// JavaScript Document
<!--
var popupWindow = null;

function showProperty(prop) {
if (navigator.userAgent.indexOf('Chrome/') > 0) {
    if (window.popupWindow) {
        window.popupWindow.close();
        window.popupWindow = null;
    }
}


if (!popupWindow || popupWindow.closed) {
	popupWindow = window.open("http://secure.instantsoftwareonline.com/StayUSA/Property.aspx?coid=0636&propid="+prop,"propertyWin","status=yes,width=800,height=580,scrollbars=yes");
}else{
	popupWindow.location.href="http://secure.instantsoftwareonline.com/StayUSA/Property.aspx?coid=0636&propid="+prop;
	popupWindow.focus();
}

}
//-->
