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)
{
	document.location.href = '/ECDetail.aspx?CI=' + pCONTENT_ID
}

function EasyContentResizeFileContentWindow()
{
	newWindowHeight = Math.min(screen.height-100,document.images['RENDERIMAGE'].height+80);
	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();
}
