var width=560;
var height=550;
var heightsmall=350;
var widthwide=1050;
var heightwide=650;
var parameters = "scrollbars=yes,menubar=no,titlebar=no,status=yes,left=100,top=40,directories=no,toolbar=no,resizable=yes,width="+width+",height="+height;
var parametersmall = "scrollbars=yes,menubar=no,titlebar=no,status=yes,left=100,top=40,directories=no,toolbar=no,resizable=yes,width="+width+",height="+heightsmall;
var parameterswide = "scrollbars=yes,menubar=no,titlebar=no,status=yes,left=100,top=40,directories=no,toolbar=no,resizable=yes,width="+widthwide+",height="+heightwide;

//alert (parameters);

function popup(url)
	{
	windowhandle=window.open(url, "popWin", parameters)
	windowhandle.focus();
	}
	
function popupsmall(url)
	{
	windowhandlesmall=window.open(url, "popWin", parametersmall)
	windowhandlesmall.focus();
	}

function popupwide(url)
	{
	windowhandle=window.open(url, "popWin", parameterswide)
	windowhandle.focus();
	}
	