// JavaScript Document

function getNavContext()
{
return "";
}
function getHostChannel()
{
return "";
}

function GoTo(strUrl)
{
	window.opener.location.href = strUrl;
	window.close();
}

function openPrint(url)
{
	pWin = window.open(url,'pWin','width=640,height=380,location=0,scrollbars=1,menubar=1');
	pWin.moveTo((screen.width/2) - 320, (screen.height/2) - 190)
	pWin.focus();
}

function openPopup(url)
{
	popWin = window.open(url,'pop','width=410,height=480,location=0,scrollbars=1,menubar=0');
	popWin.moveTo((screen.width/2) - 205, (screen.height/2) - 240)
	popWin.focus();
}

function openWin(url)
{
	if(url != '')
	{
		pNWin = window.open(url,'pNWin');
		pNWin.focus();
	}
}

function UpdateIt(){
	el = document.getElementById("Console1Div");
	if(el != null)
	  el.style.top = document.body.scrollTop + 2;
}
