var XMLHttpRequestObject = false;
if (window.XMLHttpRequest) {
XMLHttpRequestObject = new XMLHttpRequest();
} else if (window.ActiveXObject) {
XMLHttpRequestObject = new ActiveXObject("Microsoft.XMLHTTP");
}
function changeBody(bannerURL,bodyURL)
{
 	window.frames["body"].location=bodyURL;    
 	changeBanner(bannerURL);
}

function changeBanner(bannerURL)
{
	if(XMLHttpRequestObject) 
	{
		var obj = document.getElementById('bannerTextDiv');
		XMLHttpRequestObject.open("GET", bannerURL);
		XMLHttpRequestObject.onreadystatechange = function()
		{
			if (XMLHttpRequestObject.readyState == 4 && XMLHttpRequestObject.status == 200) 
			{
				obj.innerHTML = XMLHttpRequestObject.responseText;
			}
		}
		XMLHttpRequestObject.send(null);
	}
}

function initGliders()
{
	initGlide('glideDivSearch','crossimg2','150');
	initGlide('glideDivEmail','crossimg','173');
	initGlide('glideDivTxtFld','crossimg3','250');
}

//setTimeout("initGliders()",5000);

function postEntry()
{
   if(window.frames["body"].location=="/pages/php/aboutme/diary.php") 
   {  
     window.frames["body"].document.getElementById("scrapuser").value = "Amit";
     window.frames["body"].document.getElementById("txt").value=document.getElementById("bar").value;     
     window.frames["body"].document.getElementById("scraptitle").value=document.getElementById("scraptitle").value;     
     window.frames["body"].document.postentry.submit();
   }
   else
   { 
     window.frames["body"].location="./chirkut.html";   
   } 
}

