
function goHome(url) {
	parent.opener.top.location.href = url;
	window.close();
	}
	
function goMain(url) {
	parent.opener.top.location.href = url;
	}

function openWin(url,name) {
	popupWin =  window.open(url,name,"width=608,height=380,status=no,location=no,toolbar=no,directories=no,menubar=no,scrollbars=yes,resizable=no,X=0,Y=0");
	if (!popupWin.opener) {
		popupWin.opener = self;
		}
}

function goPage(s) {
	var d = s.options[s.selectedIndex].value;
	window.top.location.href = d;
	s.selectedIndex = 0;
}

