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