function OpenImageWindow(URL, width, height)
{
	window.open (URL,"anyName","toolbar=no,location=no, scrollbars=yes,width=" + width + ",height=" + height + ",personalbar=no,directories=no,menubar=no,titlebar=no,resizable=yes,left="+parseInt((screen.availWidth-width)/2)+",top="+parseInt((screen.availHeight-height)/2)+""); 
	return false;
}
	
function OpenNewWindow(URL, width, height)
{
	window.open (URL,"anyName","toolbar=yes,location=yes, scrollbars=yes,width=" + width + ",height=" + height + ",personalbar=yes,directories=no,menubar=yes,titlebar=yes,resizable=yes,left="+parseInt((screen.availWidth-width)/2)+",top="+parseInt((screen.availHeight-height)/2)+"");
	return false; 
}
	
function OpenWindow(URL, width, height)
{
	window.open (URL,"anyName","toolbar=yes,location=yes, scrollbars=yes,width=" + width + ",height=" + height + ",personalbar=yes,directories=no,menubar=yes,titlebar=yes,resizable=yes,left="+parseInt((screen.availWidth-width)/2)+",top="+parseInt((screen.availHeight-height)/2)+"");
	return false;
}

function QuickCloseWindow(URL, width, height)
{
	window.open (URL,"anyName","toolbar=no,location=no, scrollbars=no,width=" + width + ",height=" + height + ",personalbar=no,directories=no,menubar=no,titlebar=no,resizable=no,left="+parseInt((screen.availWidth-width)/2)+",top="+parseInt((screen.availHeight-height)/2)+"");
	return false;
}
	
function OpenWindowNoBars(URL, width, height)
{
	window.open (URL,"anyName","toolbar=no,location=no,scrollbars=no,width=" + width + ",height=" + height + ",personalbar=no,directories=no,menubar=no,titlebar=no,resizable=no");
	return false;
}
