<!--//
var gallerywin=null;
function funcHTMLWindow(strURL, intWidth, intHeight)
{
	var intWidth = intWidth + 30
	var intHeight = intHeight + 30
   	gallerywin = window.open(strURL,"gallerywin","menubar=0,directories=0,toolbar=0,titlebar=0,location=0,scrollbars=0,resizable=0,width=" + intWidth + ",height=" + intHeight + "");
   	gallerywin.resizeTo(intWidth, intHeight);
	if (top.screen) 
	{
		var ScreenWidth = screen.width;
		var ScreenHeight = screen.height
		intWidth = intWidth / 2
		intHeight = intHeight / 2
		ScreenWidth = ScreenWidth / 2
		ScreenHeight = ScreenHeight / 2
		intWidth = ScreenWidth - intWidth;
		intHeight = ScreenHeight - intHeight;
   		gallerywin.moveTo(intWidth,intHeight);
	} 
	else 
	{
	   	gallerywin.moveTo(0,0);
	}
   	gallerywin.focus();
}
// -->