function openHtmlSite(){
	var strHtmlSite = location.href.substring(0, location.href.lastIndexOf("hi-band"))+"lo-band/home.htm";
	if(window.opener && !window.opener.closed){
		window.opener.location.href = strHtmlSite;
		window.opener.focus();
	}else{
		var objSite = window.open(strHtmlSite,"RRSITE","location=yes,scrollbars=yes,resizable=yes,toolbar=yes,menubar=yes")
		objSite.focus();
	}
		self.close();
}
if(document.URL.indexOf("close.html")!=-1){
		openHtmlSite();
}
