function picWin(image){
	var theUrl = "/picwin.php?img=/userfiles/photos/large/" + image;
	//alert(theUrl);
	window.open(theUrl,'theWin','width=756,height=592,toolbar=0,menubar=0,status=0,scrollbars=0,location=0,resizable=0')
}

function swapImage(filename,title) {
	document.getElementById("main_img").innerHTML = '<img src="/userfiles/photos/large/'+filename+'" alt="'+title+'" title="'+title+'" id="big_img" width="556" onclick="picWin(\''+filename+'\');" />';
	document.getElementById("pic_title").innerHTML = title;
}

function picWinFloorPlan(image){
	var theUrl = "/picwin.php?img=/userfiles/floorplans/large/" + image;
	//alert(theUrl);
	window.open(theUrl,'theWin','width=756,height=592,toolbar=0,menubar=0,status=0,scrollbars=0,location=0,resizable=0')
}
function swapImageFloorPlan(filename,title) {
	document.getElementById("main_img").innerHTML = '<img src="/userfiles/floorplans/large/'+filename+'" alt="'+title+'" title="'+title+'" id="big_img" width="556" onclick="picWinFloorPlan(\''+filename+'\');" />';
	document.getElementById("pic_title").innerHTML = title;
}

function popWindow(url,name,width,height,scrollbars){
	popWindow_n = window.open(url,name,"menubar=false,location=false,scrollbars=" + (scrollbars ? "yes" : "false") + ",toolbar=false,width=" + width + ",height=" + height + ",status=false,resizable=0");
	popWindow_n.focus();
}