﻿// JScript File
function OpenWindow(url)
{
	ScreenWidth = screen.AvailWidth;
	ScreenHeight = screen.AvailHeight;
	PopUpWidth = 400;
	PopUpHeight = 150;
	PopUpLeft = ((ScreenWidth - PopUpWidth) / 2);
	PopUpTop = ((ScreenHeight - PopUpHeight) / 2);
	window.open(url, '_blank', 'WIDTH=' + PopUpWidth + ', HEIGHT=' + PopUpHeight + ', Top=' + PopUpTop + ', Left=' + PopUpLeft + ', LOCATION=no, MENUBAR=no, STATUS=no, TOOLBAR=no,SCROLLBARS=yes, RESIZABLE=no'); 
//	window.opener = null
//	window.close()
//	return false
//	win.focus();
}

