




//-------  Pop-up windows horizontal

function imgWindow(imgName) {
	var w = 630;
	var h = 555;
	
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	
	var params = 'width='+w+',height='+h+',left='+winl+',top='+wint+',resizable=no,scrollbars=no';
	contactWindow = window.open( 'property-zoom.html?imgName=' + escape(imgName), 'viewWin',params)
}


function zoomWindow(theURL,winName,features) { //v2.0

	var w = 700;
	var h = 650;
	
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	
	var features = 'width='+w+',height='+h+',left='+winl+',top='+wint+',resizable=yes,scrollbars=no';
 	//var features = 'width=600,height=400,resizable=no,scrollbars=no'; 
	 window.open(theURL,winName,features);
	 
	 }
	 


function vidWindow(theURL,winName,features) { //v2.0

	var w = 500;
	var h = 420;
	
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	
	var features = 'width='+w+',height='+h+',left='+winl+',top='+wint+',resizable=yes,scrollbars=no';
 	//var features = 'width=600,height=400,resizable=no,scrollbars=no'; 
	 window.open(theURL,winName,features);
	 
	 }

	 
