<!--
function popup(wherever,ser) {                                   
                var win_chk = null;                                   
                //var url;
                //url=checkpop_url(wherever)                                    
                //url="ID=" + wherever;                                   
                //alert (checkpop_url(wherever) );                                   
                                   
                win_chk = window.open( '',                                   
                           'wherever',                                   
                           'scrollbars=yes,resizable=no,width=700,height=400' );                                   
                if ( win_chk != null ) {                                   
                        win_chk.location.href = checkpop_url(wherever);                                   
                        if ( win_chk.opener == null ) {                                   
                                win_chk.opener = self;                                   
                        }  
                }
				        }
		function checkpop_url(wherever) {                                        
                 return('http://www.pharma-cosmetics.ru/'+ wherever);                                
        } 

function form_validator(theForm) {
  if(theForm.searchterm.value == "") {
    alert("Введите строку для поиска !");
    theForm.searchterm.focus();
    return(false);
  }
  return (true);
}
	                         
-->
