
<!--
function createPopup(title,width,height,url) {
	var winleft = (screen.width - width) / 2;
	var wintop = (screen.height - height) / 2;
	
	var options = 'toolbar=no,titlebar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=no,fullscreen=no,scrollbars=yes,top=' + wintop + ',left=' + winleft +',width=' + width + ',height=' + height;
	var newWin = window.open(url,title,options);
	newWin.focus();
}
//-->
