//液企通会员商铺
function Check2(){
if (document.form2.sk.value=="" || document.form2.sk.value=="请输入您要查询的关键字"){
alert("请输入您要查询的关键字！");
document.form2.sk.value='';
document.form2.sk.focus();
return false;
}
return true;
}
//商铺在线留言
function Check1(){
if (document.form1.guestbook_title.value==""){
alert("请填写留言主题！");
document.form1.guestbook_title.focus();
return false;
}
if (document.form1.guestbook_content.value==""){
alert("请填写留言内容！");
document.form1.guestbook_content.focus();
return false;
}
if (document.form1.guestbook_linkname.value==""){
alert("请填写联系人！");
document.form1.guestbook_linkname.focus();
return false;
}
if (document.form1.guestbook_tel.value==""){
alert("请填写联系电话！");
document.form1.guestbook_tel.focus();
return false;
}
if (document.form1.today.value==""){
alert("请填写今天是几号！");
document.form1.today.focus();
return false;
}
return true;
}


//广告代码
<!--
window.onload = getMsg;
window.onresize = resizeDiv;
window.onerror = function(){}
//***提示使用(asilas添加)
var divTop,divLeft,divWidth,divHeight,docHeight,docWidth,objTimer,i = 0;
function getMsg()
{
 try{
 divTop = parseInt(document.getElementById("eMeng").style.top,10)
 divLeft = parseInt(document.getElementById("eMeng").style.left,10)
 divHeight = parseInt(document.getElementById("eMeng").offsetHeight,10)
 divWidth = parseInt(document.getElementById("eMeng").offsetWidth,10)
 docWidth = document.body.clientWidth;
 docHeight = document.body.clientHeight;
 document.getElementById("eMeng").style.top = parseInt(document.body.scrollTop,10) + docHeight + 10;//  divHeight
 document.getElementById("eMeng").style.left = parseInt(document.body.scrollLeft,10) + docWidth - divWidth
 document.getElementById("eMeng").style.visibility="visible"
 objTimer = window.setInterval("moveDiv()",10)
 }
 catch(e){}
}

function resizeDiv()
{
 i+=1
 //if(i>300) closeDiv() //客户想不用自动消失由用户来自己关闭所以屏蔽这句
 try{
 divHeight = parseInt(document.getElementById("eMeng").offsetHeight,10)
 divWidth = parseInt(document.getElementById("eMeng").offsetWidth,10)
 docWidth = document.body.clientWidth;
 docHeight = document.body.clientHeight;
 document.getElementById("eMeng").style.top = docHeight - divHeight + parseInt(document.body.scrollTop,10)
 document.getElementById("eMeng").style.left = docWidth - divWidth + parseInt(document.body.scrollLeft,10)
 }
 catch(e){}
}

function moveDiv()
{
 try
 {
 if(parseInt(document.getElementById("eMeng").style.top,10) <= (docHeight - divHeight + parseInt(document.body.scrollTop,10)))
 {
 window.clearInterval(objTimer)
 objTimer = window.setInterval("resizeDiv()",1)
 }
 divTop = parseInt(document.getElementById("eMeng").style.top,10)
 document.getElementById("eMeng").style.top = divTop - 1
 }
 catch(e){}
}
function closeDiv()
{
 document.getElementById('eMeng').style.visibility='hidden';
 if(objTimer) window.clearInterval(objTimer)
}
-->
