
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() {

$("input.searchBox").focus(function(){
		if ( $(this).val() == "Search Cintas")
        $(this).val('');
	});
	$("input.searchBox").blur(function(){
		if ( $(this).val() == "")
		$(this).val('Search Cintas');
	});	
	
  });

