<!--
  function help_win(url) {
// URLENCODE the url passed through otherwise loose end args sent through.
  myWind = window.open(url, "NewWindow", "width=620,height=530,toolbar=0,menubar=0,location=0, status=0, scrollbars=1, resizable=1")
 }

function mini_win(url) {
// URLENCODE the url passed through otherwise loose end args sent through.
  myWind = window.open(url, "miniWindow", "width=590,height=450,toolbar=0,menubar=0,location=0, status=0, scrollbars=1, resizable=1")
 }


function small_win(url) {
// URLENCODE the url passed through otherwise loose end args sent through.
  myWind = window.open(url, "NewWin", "width=380,height=390,left=100,top=100,toolbar=0,menubar=0,location=0, status=1, scrollbars=1, resizable=1")
 }

 
 
 
 function formHandler(form) { //width=750,height=560
var windowprops = "height=600,width=750,location=no,"
+ "scrollbars=no,menubars=no,toolbars=no,resizable=yes";

var URL = form.site.options[form.site.selectedIndex].value;
if (URL!="") popup = window.open("render.php?site=1&Ref=402&id="+URL,"MenuPopup",windowprops);
}

 //-->
