/*////////////////////////////////////////////////////
	Common JavaScript Pack
////////////////////////////////////////////////////*/

/* OpenWindow */

function opwin(url,wn,w,h){
	window.open(url,wn,"width="+w+",height="+h+",menubar=1,location=1,resizable=1,status=1");
}

function go(){
    if(document.myform.myselect.options[document.myform.myselect.selectedIndex].value){
        location = document.myform.myselect.options[document.myform.myselect.selectedIndex].value;
    }
}
