// Copyright 2003 Glory Day Software Company 
//---------------------------------------------------------------------------------------------------------------
function WindowOpenNoURL(numWidth,numHeight,flgToolBars)
{
if (document.all)
	{
	var xMax = screen.width, yMax = screen.height;
	}
else if (document.layers)
	{
    var xMax = window.outerWidth, yMax = window.outerHeight;
	}
else
	{
    var xMax = 640, yMax=480;
	}

var xOffset = (xMax - 200)/2, yOffset = (yMax - 200)/2;

winhandle=window.open('','yss_photo_popup',
'width=' + numWidth + ',height=' + numHeight + 'screenX=0,screenY=0,top=0,left=0,resizable=1,scrollbars=' + flgToolBars + ',toolbar=0,location=0,directories=0,status=0,menubar=0,copyhistory=0');
winhandle.resizeTo(numWidth+12, numHeight+31);
winhandle.focus();

}

//---------------------------------------------------------------------------------------------------------------
