<!-- hide from non-JavaScript enabled browsers
function openwin() 
	{
	window.open("","x",'toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,width=475,height=500,resizable=yes');
	
	}
	
function popupWindow(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=650,height=525,screenX=150,screenY=150,top=150,left=150');
}

function popupWindowFlexible(url, width, height, target) {
  window.open(url, target, 'toolbar=0,location=0,status=no,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width=' + width + ',height=' + height + ',screenX=150,screenY=150,top=150,left=150');
}
-->