
function redirectPage() {
	
	//alert("redirect");
	
	if(window.location.href.split("index.htm")[1] != undefined) {
		//window.location.href = window.location.href.split("/default.htm")[0]+"/#/home/";
		window.location.href = window.location.href.split("/index.htm")[0];
	} else {
		
		var my_url = window.location.href
	
		if(my_url.split("/#/")[1] == undefined) {
			
			//window.location.href = window.location.href+"#/home/";
			
		} else {
		
			//var frame_url = "htms/"+my_url.split("/#/")[1].split("?")[0]+".asp";
			//var frame_param = my_url.split("/#/")[1].split("?")[1];
			
			//if (frame_param == undefined) {
				//var frame_link = frame_url 
			//} else {
				//var frame_link = frame_url+"?"+frame_param;
			//}
	
			//document.getElementById('frame_site').src = frame_link
	
		}
	}
}

