﻿function hide(a,b){	
		if(b==null && ( (a.value=='Enter Your E-Mail Here...') || (a.value=='Enter Your Search Product Here...')) )
			a.value='';
		else{
			if(a.value=='' && b!=null)
				a.value=b;
		}
		
	}
	function foc(a,b){	
		if(b!='no'){
			a.style.borderColor='red';
		}else
			a.style.borderColor='';
	}

