// JavaScript Document
function openWin(html,name,w,h)
{
myWin= open(html, name, "width="+w+",height="+h+",status=no,titlebar=yes,toolbar=no,left=0,top=0,menubar=no,scrollbars=no,resizable=yes");
}

function openWinScroll(html,name,w,h)
{
myWin= open(html, name, "width="+w+",height="+h+",status=no,titlebar=yes,toolbar=no,left=0,top=0,menubar=no,scrollbars=yes,resizable=yes");
}

function goTo(url)
{ 
	location.href= url;
}



