function OpenWin(url, w, h, menubar){
	/*
	* url is a string value
	* w and h are integers
	* the rest are strings yes or no
	*/
	if(url.indexOf("http://") != 0)
	{
		url = "http://"+url
	}
	window.open(url, "", "width="+w+",height="+h+",menubar="+menubar+",resizable=yes,scrollbars=yes")
	
}

function ImagePop(which,width,height,type) {
	height+=17
	//type = (type == "") ? "gallery" : "property";
	filename = (type=="gallery") ? "ph_gallery_image.php" : "property_image.php";
	myWin=window.open(filename+"?which="+which,"","width="+width+",height="+height+",scrollbars=auto,resizable=no,menubar=no,copyhistory=no,addressbar=no,top=10,left=10")
}