function xmlhttpPost(strURL){var xmlHttpReq=false;if(window.XMLHttpRequest){xmlHttpReq=new XMLHttpRequest();if(xmlHttpReq.overrideMimeType){xmlHttpReq.overrideMimeType('text/xml');}}else if(window.ActiveXObject){try{xmlHttpReq=new ActiveXObject("Msxml2.XMLHTTP");}catch(e){try{xmlHttpReq=new ActiveXObject("Microsoft.XMLHTTP");}catch(e){}}}
if(!xmlHttpReq){alert('ERROR AJAX:( Cannot create an XMLHTTP instance');return false;}
xmlHttpReq.open('GET',strURL,true);xmlHttpReq.setRequestHeader('Content-Type','application/x-www-form-urlencoded');xmlHttpReq.onreadystatechange=function(){callBackFunction(xmlHttpReq);};xmlHttpReq.send("");}
function callBackFunction(http_request){if(http_request.readyState==4){if(http_request.status==200){var responceString=http_request.responseText;}else{alert('ERROR: AJAX request status = '+http_request.status);}}}
function MM_reloadPage(init){if(init==true)with(navigator){if((appName=="Netscape")&&(parseInt(appVersion)==4)){document.MM_pgW=innerWidth;document.MM_pgH=innerHeight;onresize=MM_reloadPage;}}
else if(innerWidth!=document.MM_pgW||innerHeight!=document.MM_pgH)location.reload();}
MM_reloadPage(true);function switchImage(imgName,imgSrc)
{if(document.images)
{if(imgSrc!="none")
{document.images[imgName].src=imgSrc;}}}
function blockError()
{return true;}
window.onerror=blockError;