function PrivTermsPop(theUrl, winName)
{
	window.open(theUrl, winName, "width=566,scrollbars,resizable");
}

function openWindow(url, name)
{

var a = screen.height * 0.765;
window.open(url, name,'width=780,height=' + a + ',resizable,top=0,left=0,scrollbars,status');

}

function openCustomWindow(url, name, width, height)
{
	window.open(url, name, 'width=' + width + ',height=' + height + ',top=0,left=0');
}


