<!-- 
//custom popup pages with arguments
function doPopup(Page, Width, Height)
{
var newwindow;
  if (newwindow != null) {
		  newwindow.close();
	  	  newwindow = null;
	  }
  newwindow=window.open(Page,'new_win',"width=" + Width + ",height=" + Height + ",top=50,left=50,menubar=yes,toolbar=no,resizable=yes,scrollbars=1, us=no")
}
//-->

<!-- Begin
function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}
// End -->
 
 <!-- 
function NewWindow(Page)

{

var newwindow;



  if (newwindow != null) {

		  newwindow.close();

	  	  newwindow = null;

	  }

  newwindow=window.open(Page,'newwindows',"width=950,height=650,top=50,left=50,menubar=yes,toolbar=no,resizable=yes,scrollbars=1,status=no")

}

//-->


            //form handler, by b :-)
            function formGo(formID){
                window.location.href = $("#"+formID).find("select").val();
            }
