		<!--
function PopupWin(mylink, strWindowName)
{
	if (! window.focus)return true;
	var href;
	if (typeof(mylink) == 'string')
	href=mylink;
	else
	href=mylink.href;
	window.open(href, strWindowName, 'width=650,height=600,scrollbars=yes,left=20%,top=10%');
}

function PopupDomainEdit(mylink, strWindowName)
{
	if (! window.focus)return true;
	var href;
	if (typeof(mylink) == 'string')
	href=mylink;
	else
	href=mylink.href;
	window.open(href, strWindowName, 'width=750,height=300,scrollbars=auto,left=150,top=150');
}

function PopupMessageDetails(mylink, strWindowName)
{
	if (! window.focus)return true;
	var href;
	if (typeof(mylink) == 'string')
		href=mylink;
	else
		href=mylink.href;
	window.open(href, strWindowName, 'width=750,height=400,scrollbars=yes,left=150,top=150');
}


function PopupDomainCheck(mylink, strWindowName)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, strWindowName, 'width=980,height=450,scrollbars=yes,left=20,top=150');
}

		
function PopupWinMessageHelp(mylink, strWindowName)
{
	if (! window.focus)return true;
	var href;
	if (typeof(mylink) == 'string')
	href=mylink;
	else
	href=mylink.href;
	window.open(href, strWindowName, 'width=510,height=350,scrollbars=yes,left=20%,top=10%');
}		


function ReloadPowercheckMaster()
{
	//window.opener.location.reload();		
	window.opener.location.href='powercheck.aspx';	
}


function GoToRegister()
{
	window.opener.location.href='/newuser10.aspx';
    javascript:window.close()	
};			

function PopupWinOpenURL(mylink)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, 'web', 'width=750,height=400,scrollbars=yes,left=150,top=150');
}


function TrapEnter(btn){
	if (document.all){
		if (event.keyCode == 13)
		{
			event.returnValue=false;
			event.cancel = true;
			btn.click();
		} 
	}
};

function PowerCheckOnLoad(){
	if (document.all){
//	document.all.tbNewDomain.focus();
// Focus Disabled /cw
	}
};

function QuickCheckOnLoad(){
	if (document.all){
//	document.all.domain.focus();
// Focus Disabled /cw
	}
};

		//-->
