// JavaScript Document
function PopUpWindow(URLStr, width, height, left, top, winname)
{
	var vLeft = (left) ? left : (screen.width - width) / 2;
	var vTop = (top) ? top : (screen.height - height) / 2;

	dateObj = new Date();

	if(!winname)
		winname = 'PopUp' + dateObj.getDay() + dateObj.getMonth() + dateObj.getYear() + dateObj.getHours() + dateObj.getMinutes() + dateObj.getSeconds();
		
	popUpWin = window.open(URLStr, winname, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+vLeft+', top='+vTop+',screenX='+vLeft+',screenY='+vTop+'');
	popUpWin.focus();

	return;
}
function PopUpWindowSL(URLStr, width, height, left, top, winname)
{
	var vLeft = (left) ? left : (screen.width - width) / 2;
	var vTop = (top) ? top : (screen.height - height) / 2;

	dateObj = new Date();

	if(!winname)
		winname = 'PopUp' + dateObj.getDay() + dateObj.getMonth() + dateObj.getYear() + dateObj.getHours() + dateObj.getMinutes() + dateObj.getSeconds();
		
	popUpWin = window.open(URLStr, winname, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+vLeft+', top='+vTop+',screenX='+vLeft+',screenY='+vTop+'');
	popUpWin.focus();

	return;
}