function PopUp(page,name,w,h, scl) {
	var height = screen.height;
	var width = screen.width;
	var leftpos = (width - w) / 2;
	var toppos = (height-h) / 2;
	OpenWin = window.open(page, name, "menu=no,toolbar=no,menubar=no,location=no,scrollbars=" + scl + ",resizable=yes,status=no,left=40,top=40,width="+w+",height="+h);
}

function OpenParent(Link)
{
	if (window.opener && !window.opener.closed)
  		window.opener.location.href = Link;
  	else
  		window.location.href = Link;
}
