
	function NewWindow(url,name,w,h) {

		var l = (screen.width - w) / 2;
		var t = (screen.height - h) / 2;
		window.open(url,name,'width=' + w + ',height=' + h + ',left=' + l + ',top=' + t + ',resizable=yes,scrollbars=yes,toolbar=no,menubar=no,status=no,location=no,screenX=10,screenY=10;');

	}

	function onClickPopup(url, w, h) {

		this.open(url, "", "scrollbars=auto,height="+h+",width="+w);

	}

	function popup(url, img_width, img_height) {

		var t = (parent.document.body.offsetHeight-img_height)/2;
		var l = (parent.document.body.offsetWidth-img_width)/2;
		window.open(url, 'Images','width='+img_width+', height='+img_height+',status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=1,top='+t+',left='+l);

	}

	function TellAFriend() {

		var w = 410;
		var h = 435;
		var l = (screen.width - w) / 2;
		var t = (screen.height - h) / 2;
		window.open('http://www.flashimap.com/tellafriend.php','TellAFriend','width=' + w + ',height=' + h + ',left=' + l + ',top=' + t + ',resizable=no,scrollbars=auto,toolbar=no,menubar=no,status=no,location=no;');

	}

