function openURL(sURL) {
 var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i;
 //var email = document.getElementById('searchkey').value;
 var email = "";

 if (filter.test(email)) {
 window.open(sURL+'?ea='+email+'&m=1102765974952&p=oi','','scrollbars=no,menubar=no,height=500,width=800,resizable=yes,toolbar=no,location=no,status=no');
 res=true;
 }
 else{
 //alert("Please input a valid email address!");
 window.open(sURL+'?ea='+email+'&m=1102765974952&p=oi','','scrollbars=no,menubar=no,height=260,width=800,resizable=yes,toolbar=no,location=no,status=no');
 }
}

function openWindow(URL) {
	window.open(URL,'','scrollbars=no,menubar=no,height=260,width=800,resizable=yes,toolbar=no,location=no,status=no');
} 
