function onload ()
{

	var strURL = "D";
	strURL = strURL.replace( "D", document.location );
	var strPageName = strURL.substring( strURL.indexOf("?page=") + 6, strURL.length );

	if ( strURL.indexOf("?page=") > 0 && strPageName != "") {
		//document.open( strPageName, "cswebmain", "", true );
		//navigate
		top.frames["cswebmain"].location.href = strPageName;
	}

	return(true);

}