function viewMap(address) {
	window.open('/map.php?address='+address,'map','width=800,height=550,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0');



}

function coupleLogin(open){
	if ($('popupLogin')){
		if (open == 1) {
			/*var winWidth = 1024;
			var winHeight = 768;
			var left = 0;
			var top = 0;
			
			
			if (window.innerWidth) {
				winWidth = window.innerWidth;
			}
			else 
				if (document.documentElement && document.documentElement.clientWidth) {
					winWidth = document.documentElement.clientWidth;
				}
				else 
					if (document.body) {
						winWidth = document.body.clientWidth;
					}
			
			if (window.innerHeight) {
				winHeight = window.innerHeight;
			}
			else 
				if (document.documentElement && document.documentElement.clientHeight) {
					winHeight = document.documentElement.clientHeight;
				}
				else 
					if (document.body) {
						winHeight = document.body.clientHeight;
					}
			
			$('popUpBg').style.height= winHeight+'px';
			$('popUpBg').style.display='block';
			
			if ($('popupLogin')) {
				left = winWidth / 2 - 200;
				top = winHeight / 2 - 150;
				$('popupLogin').style.left = left + 'px';
				$('popupLogin').style.top = top + 'px';
			}*/
			
			$('popupLogin').style.display = "block";

		}else {
			$('popupLogin').style.display = "none";
		}
	}	
}
