// JavaScript Document
function openNew(url, w, h)
{
	 window.open(url,"y_win_"+url,"menubar=0,resizable=0,width="+w+",height="+h);
}

function openBrowser(url)
{
	 window.open(url);
}

function submitForm(fName)
{
	document[fName].submit();
}

function scrollToTop()
{
	scroll(0,0);
}