



function openPopUp(popurl, mywidth, myheight){
    	    var winpops=window.open(popurl,"","width="+mywidth+",height="+myheight+",status,scrollbars,resizable");
}


function SelectMenuItem(){

         
         var myV = document.getElementById('menuid_' + js_mypageid);
          
          if (myV!=null) myV.className = "on";
          // myV.innerHTML="fred";
        //alert('ok');

}




$(document).ready(function() {
//form field default values onfocus
$('input.searchBox').each(function(){
    $.data(this, 'default', this.value);
}).focus(function(){
    if ($.data(this, 'default') == this.value) {
        this.value = '';
    }
}).blur(function(){
    if (this.value == '') {
        this.value = $.data(this, 'default');
    }
});
});


