function SetUpWindow(){
var iw;
if (window.innerWidth == null) {
iw = document.body.clientWidth;
}
else {
iw = window.innerWidth;
}
if (iw < 820) {
window.resizeTo(820,600);
}
}

function openWindow(url, width, height)
{
	if ((width + 30 > screen.width) || (height + 60 > screen.height))
	{
	        width = width + 50;
                if (width > screen.width - 80)
			width = screen.width - 80;
	        height = height + 50;
		if (height > screen.height - 110)
			height = screen.height - 110;
		popupWin = window.open(url, "_blank", "resizable,scrollbars,width=" + width + ",height=" + height + ",top=40,left=40,screenX=40,screenY=40");
	}
	else
	{
	        width = width + 18;
	        height = height + 26;
		popupWin = window.open(url, "_blank", "resizable,width=" + width + ",height=" + height + ",top=40,left=40,screenX=40,screenY=40");
	}
}

function openBoxWindow(url)
{
		popupWin = window.open(url, "boxphoto", "resizable,scrollbars,width=750,height=575");
}