function EasyContentFileContent(pCONTENT_ID,pITEM_ID,pLANGUAGE_ID)
{	
	autoPopupImageURL = 'FilePage.aspx?&CI=' + pCONTENT_ID + '&II=' + pITEM_ID + '&LI=' + pLANGUAGE_ID
	c_winpopup_settings 	= 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,height=240,width=320'
	//ECP = window.open('EasyContent/AutoSizePopUp.htm', 'ECP', c_winpopup_settings);
	ECP = window.open('../EasyContent/' + autoPopupImageURL, 'ECP', c_winpopup_settings);
}

function EasyContentDetail(pCONTENT_ID,pLANGUAGE_ID)
{
	c_winpopup_settings = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,height=360,width=320'
	ECD=open('../easycontent/detail.aspx?CONTENT_ID=' + pCONTENT_ID + '&LANGUAGE_ID=' + pLANGUAGE_ID,'ECD',c_winpopup_settings);
	ECD.focus();
}

function EasyContentDetailFrame(pCONTENT_ID,pLANGUAGE_ID)
{
	//c_winpopup_settings = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,height=360,width=320'
	//ECD=open('../easycontent/detail.aspx?CONTENT_ID=' + pCONTENT_ID + '&LANGUAGE_ID=' + pLANGUAGE_ID,'ECD',c_winpopup_settings);
	//ECD.focus();
	
	if (document.getElementById)
		{ 	
				document.getElementById("GALLERY_DETAIL").innerHTML = ayTexts[pID];
		}
		else 
		{
			document.GALLERY_DETAIL.document.close();
			document.GALLERY_DETAIL.document.open();
			document.GALLERY_DETAIL.document.writeln(ayTexts[pID]);
			document.GALLERY_DETAIL.document.close();
		}	
}

function EasyContentResizeFileContentWindow()
{
	newWindowHeight = Math.min(screen.height-100,document.images['RENDERIMAGE'].height-100);
	newWindowWidth = Math.min(screen.width-20,document.images['RENDERIMAGE'].width-30) + 80;
	self.top.resizeTo(newWindowWidth,newWindowHeight);
	self.top.moveTo(screen.width/2 - document.images['RENDERIMAGE'].width/2+10 ,10);
	self.top.focus();
}

