// JavaScript Document
var dOpa = "50";
var offHeight;

function viewArea(){
	var div = document.createElement("DIV");
	div.id = "selectcity";
	div.style.position = "absolute";
	div.style.zIndex="1000";
	div.style.height = "500px";
	div.style.display = "none";
	div.innerHTML = getHtml();
	document.body.appendChild(div);
		
	offHeight = window.screen.height;
	var div = document.createElement("DIV");
	div.id = "errMsg";
	div.style.left = 0;
	div.style.top = 0;
	div.style.width=document.body.scrollWidth;
	div.style.height = document.body.scrollHeight;
	div.style.position = "absolute";
	div.style.display = "";
	div.style.zIndex = "999";
	div.style.filter = "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	div.style.backgroundColor="#FEFDEB";
	document.body.appendChild(div);
	focusDiv();
}

function focusDiv(){
	var loginDiv = document.getElementById("selectcity");
	loginDiv.style.left = (document.body.offsetWidth)/2-400;
	loginDiv.style.top = 10;
	loginDiv.style.display = "block";
}

function getHtml(){
	var sHtml = "";

	sHtml += '<iframe src="xsarea/xsArea.htm" id="selectCityframe" style="filter:alpha(opacity=100);-moz-opacity: 0.9;position:absolute;left:0px;top:0px;width:800px;height:565px;" frameborder="0" ></iframe>';

	return sHtml;
}
