function GetXmlHttpObject(){var xmlHttp=null;try{xmlHttp=new XMLHttpRequest();}
catch(e){try{xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");}
catch(e){xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");}}
return xmlHttp;}
function saveShoutData(){shoutRequest=GetXmlHttpObject();if(shoutRequest==null){alert("Your browser does not support ajax");return;}
if(document.shoutbox.chatboxmsg.value==""||document.shoutbox.chatboxmsg.value=="NULL"){alert('Enter your message!');return;}
shoutRequest.open("POST","shout.php",true);shoutRequest.setRequestHeader("Content-Type","application/x-www-form-urlencoded");shoutRequest.send('&ChatMsg='+document.shoutbox.chatboxmsg.value+'&checkmsg='+document.shoutbox.cheks.value);if(document.shoutbox.cpage.value=="main")
{}
document.shoutbox.chatboxmsg.value='';document.shoutbox.chatboxmsg.focus();}
function savePmData(){pmRequest=GetXmlHttpObject();if(pmRequest==null){alert("Your browser does not support ajax");return;}
if(document.pmbox.privchatmsg.value==""||document.pmbox.privchatmsg.value=="NULL"){alert('Enter your message!');return;}
pmRequest.open("POST","shout.php",true);pmRequest.setRequestHeader("Content-Type","application/x-www-form-urlencoded");pmRequest.send('&ChatMsg='+document.pmbox.privchatmsg.value+'&privchat='+document.pmbox.chatsess.value);document.pmbox.privchatmsg.value='';document.pmbox.privchatmsg.focus();}
