
window.status = "Loading.......";

function window.onload()
{
	str = parent.frames.length;
	
	if (parent.frames.length != 2) 
	{
		strLoca = new String(document.location);
		if(strLoca.indexOf("#",0) < 0)
		{
			window.location = "../index.asp?page=" + escape(document.location) ;
		}
	}
	window.status = "Done! Doc-" + document.title + ". Last Updated-" + document.lastModified;
}

function window.onbeforeunload()
{
	document.bgColor = "black";
	document.clear();
}

	
