function redirectToFrame()
{
	var d=document.location.search;
	if( d !='' ){
		document.getElementById("main").src = d.substring(d.lastIndexOf('?')+1,d.length);
	}
}
function redirectToFrameset( nopage )
{
	var sPath = document.location.href.split("\\").join("/");
	var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
	if( self.location==top.location ){
		self.location = "index.html" + (nopage ? "" : "?" + sPage);
	}
}