function photoChange(mls) {
	document.MLSPHOTO.src = "http://realtor2.activewebsite.com/assets/multi_photo.php?id=" + mls
}

function showCalculator(price, taxes) {
	window.open('popup/popup_calculator.php?price='+price+'&taxes='+taxes,'mortgageCalc','width=560,height=350,resizable=no,scrollbars=no,toolbar=no');
}

function sendFriend(id) {
	window.open('popup/popup_send.php?id='+id,'sendFriend','width=560,height=350,resizable=no,scrollbars=no,toolbar=no');
}

function contactAgent(id) {
	window.open('popup/popup_contact_agent.php?id='+id,'contactAgent','width=560,height=300,resizable=yes,scrollbars=no,toolbar=no');
}

var agt=navigator.userAgent.toLowerCase();
var is_aol   = (agt.indexOf("aol") != -1);
var is_Win2K = (agt.indexOf("nt 5") != -1);
 
 
function showVT(mls) {
	if (is_aol && is_Win2K) {
		x=0;
		y=0;
	} else {
		x=139;
		y=80;      
	}
	window.open('http://www.visualtour.com/showvt.asp?bid=24135&mls='+ mls,'VirtualTour','width=570,height=525,left=' + x + ',top=' + y + ',resizable=no,scrollbars=no,toolbar=no');
}