function picWin(image){
	var theUrl = "/picwin.php?img=/userfiles/photos/large/" + image;
	//alert(theUrl);
	window.open(theUrl,'theWin','width=660,height=520,toolbar=0,menubar=0,status=0,scrollbars=0,location=0,resizable=0')
}

function swapImage(filename,label) {
	
	document.getElementById("main_img").innerHTML = '<img src="/userfiles/photos/large/'+filename+'" alt="'+label+'" title="'+label+'" id="big_img" height="301" width="444" onclick="picWin(\''+filename+'\');" />';
	document.getElementById("main_title").innerHTML = '<strong>'+label+'</strong>';
}

function picWinFloorPlan(image){
	var theUrl = "/picwin.php?img=/userfiles/floorplans/large/" + image;
	//alert(theUrl);
	window.open(theUrl,'theWin','width=660,height=520,toolbar=0,menubar=0,status=0,scrollbars=0,location=0,resizable=0')
}
function swapImageFloorPlan(filename) {
	document.getElementById("main_img_floorplan").innerHTML = '<img src="/userfiles/floorplans/large/'+filename+'" alt="Floorplan Photo" id="big_img_floorplan" height="273" width="321" onclick="picWinFloorPlan(\''+filename+'\');" />';
	
}