function PopUp(page,name,w,h, scl) {
	var height = screen.height;
	var width = screen.width;
	var leftpos = (width - w) / 2;
	var toppos = (height-h) / 2;
	OpenWin = window.open(page, name, "menu=no,toolbar=no,menubar=no,location=no,scrollbars=" + scl + ",resizable=yes,status=no,left=10,top=10,width="+w+",height="+h);
}

function dropdown(mySel)
{
var myWin, myVal;
myVal = mySel.options[mySel.selectedIndex].value;
if(myVal)
   {
   if(mySel.form.target)myWin = parent[mySel.form.target];
   else myWin = window;
   if (! myWin) return true;
   myWin.location = myVal;
   }
return false;
}
