//-------------------------------------------------------------------
function LargerPicture(HEIGHT, WIDTH, LINK)
{
	LargeImage = window.open(LINK, "", "scrollbars=yes,width=100,height=100,border=0,menubar=no,status=no,resizable=yes,top=0,left=0,screenX=0,screenY=0");
	if (window.focus) {LargeImage.focus()};
}
//--------------------------------------------------------------------
function openQTVR(WIDTH, HEIGHT, LINK)
{
	moviewin = window.open(LINK, "QTVR", "scrollbars=no,width=" + WIDTH + ",height=" + HEIGHT + ",border=0,menubar=no,status=no,resizable=yes,top=0,left=0,screenX=0,screenY=0");
	moviewin.focus();
}
//--------------------------------------------------------------------
function OpenImage(PRD_ID, DH)
{
	if (DH == 1)
	{
		LargeImage = window.open("/HighResolution.asp?PictureID=" + PRD_ID + "&DH=" + DH,"DH","width=100,height=100,border=0,scrollbars=yes,menubar=no,status=no,resizable=yes,top=0,left=0,screenX=0,screenY=0");
	}
	else
	{
		LargeImage = window.open("/HighResolution.asp?PictureID=" + PRD_ID,"","width=100,height=100,border=0,scrollbars=yes,menubar=no,status=no,resizable=yes,top=0,left=0,screenX=0,screenY=0");
	}
	if (window.focus) {LargeImage.focus()};
}
//--------------------------------------------------------------------
function OpenImageFR(PRD_ID, DH)
{
	if (DH == 1)
	{
		LargeImage = window.open("/HighResolution_fr.asp?PictureID=" + PRD_ID + "&DH=" + DH,"DH","width=100,height=100,border=0,scrollbars=no,menubar=no,status=no,resizable=yes,top=0,left=0,screenX=0,screenY=0");
	}
	else
	{
		LargeImage = window.open("/HighResolution_fr.asp?PictureID=" + PRD_ID,"","width=100,height=100,border=0,scrollbars=no,menubar=no,status=no,resizable=yes,top=0,left=0,screenX=0,screenY=0");
	}
	if (window.focus) {LargeImage.focus()};
}
//--------------------------------------------------------------------
function OpenWindow(FILE, LNG)
{
	CATALOGUE = window.open("/Download_Stats/Download_Email.asp?File=" + FILE + "&Lng=" + LNG, "CATALOGUE", "scrollbars=no,width=440,height=260,border=0,menubar=no,status=no,resizable=yes,top=300,left=350,screenX=350,screenY=300");
	if (window.focus) {CATALOGUE.focus()};
}
//--------------------------------------------------------------------