function JumpToIt(frm) {
    var newPage = frm.url.options[frm.url.selectedIndex].value
    if (newPage != "None") {
        location.href=newPage
    }
}

function selecturl(s) {

  var gourl = s.options[s.selectedIndex].value;

  	if ((gourl != null) && (gourl != "") )
	{	window.top.location.href = gourl;
	}
}

function goTo(theUrl) {

 window.top.location.href = theUrl;

}


