	popupwidth=465;
	popupheight=465;
	var myWidth = 0;
	var myHeight = 0;

	if (typeof( window.innerWidth ) == 'number') {
		myWidth = window.innerWidth;
		myHeight = window.innerHeight;
	} else if (document.documentElement && document.documentElement.clientWidth) {
		myWidth = document.documentElement.clientWidth;
		myHeight = document.documentElement.clientHeight;
	} else if(document.body && document.body.clientWidth) {
		myWidth = document.body.clientWidth;
		myHeight = document.body.clientHeight;
	}
	myWidth=(myWidth-popupwidth)/2;
	myHeight=(myHeight-popupheight)/2;
	document.write('<div id="selectLocation" style="position: absolute; left:'+myWidth+'px; top:130px; height: '+popupheight+'; width: '+popupwidth+'; display:none"><table border="0" cellpadding="0" cellspacing="0" width="465" style="border: double"><tr><td><img src="/images/help_button.png" style="position: absolute;left:438px" onclick="alert(\'- Hãy bấm vào Miền Bắc hoặc Miền Nam trên bản đồ để chọn khu vực bạn muốn mua hàng.\\n\\n- Sau khi bạn chọn khu vực, bản đồ sẽ không xuất hiện lại.\\n\\n- Để chọn lại khu vực, hãy bấm vào mục Chọn khu vực tại góc trên bên phải trang web.\')"/><a href="javascript:selectLocation(\'mienbac\')"><img src="/maps/hand_right.gif" border="0" style="position: absolute;left:190px;top:110px"><img src="/maps/mienbac.png" width="465" height="155" border="0" align="center" title="Bấm vào đây để chọn khu vực miền Bắc" /></a></td></tr><tr><td><a href="javascript:selectLocation(\'mientrung\')"><img src="/maps/hand_left.gif" border="0" style="position: absolute;left:230px;top:227px"><img src="/maps/mientrung.png" width="465" height="155" align="center" border="0" align="center" title="Bấm vào đây để chọn khu vực miền Trung" /></a></td></tr><tr><td><a href="javascript:selectLocation(\'miennam\')"><img src="/maps/hand_left.gif" border="0" style="position: absolute;left:230px;top:350px"><img src="/maps/miennam.png" width="465" height="155" border="0" align="center" title="Bấm vào đây để chọn khu vực miền Nam" /></a></td></tr></table></div>');

	function showSelectLocation() {
		document.getElementById("selectLocation").style.display="block";
		setTimeout("hideSelectLocation()",60000);
	}
	function hideSelectLocation() {
		document.getElementById("selectLocation").style.display="none";
	}
	function selectLocation(l) {
		hideSelectLocation();
		if (document.getElementById) {
			var x = (window.ActiveXObject) ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
		}
		if (x) {
			x.onreadystatechange = function() {
			if (x.readyState == 4 && x.status == 200) {
				window.location.reload();
			}
		}
		x.open("GET", "setLocation.php?local="+l, true);
		x.send(null);
	}}

