
function link_expand(imgsrc, imgdesc, href)
{	
	document.getElementById("imgMain").src = imgsrc;
	document.getElementById("imgMain").title = imgdesc;
	document.getElementById("a_imgMain").href = href;
}

function link_map(city,state,country,zip,USID){
	
	var strCity = city;
	var strState = state;
	var strCountry = country;
	var strZip = zip;
	
	//var loc ="http://www.mapquest.com/maps/map.adp?city=denver&state=CO&address=1565+california+st&zip=80202&country=us&zoom=5";
	//var loc ="http://www.mapquest.com/maps/map.adp?countrycode=110&city=Mumbai";
	
	var us_id = USID;
	
	if(country == "US"){
		var loc ="http://www.mapquest.com/maps/map.adp?city=" + strCity + "&state=" + state + "&zip=" + strZip + "&country=" + country + "&zoom=5";
	}
	else{
		var loc ="http://www.mapquest.com/maps/map.adp?city=" + strCity + "&state=" + state + "&country=" + country + "&zoom=5";
	}
	
	window.open(loc,"Map","height=600,width=800,scrollbars=yes,resizable=yes");

}

function view_tour(link)
{
	var loc = link;
	//alert(loc);
	
	//window.open(loc,"_blank","height=600,width=800,scrollbars=yes,resizable=yes");
	//window.open(link,'Virtual Tour of Property','height=600,width=800,scrollbars=yes,resizable=yes');
	
	NewWindow(link,'VirtualTour','800','600','yes');
	
}

function link_trade(intID, TSTS){
	var loc = "MemberTradesAddNew.asp?txtRequestType=" + TSTS + "&Property_ID=" + intID;
	
	location = loc;
}

function link_favorite(intID){
	if(confirm("We will send you an email any time new availability is posted for your Favorite Properties.")){
		window.open("AddToFavorites.asp?Property_ID=" + intID);
	}
}

function link_zpzp(intID)
{
	var loc="ZPZPList.asp?mode=add&Property_ID=" + intID;
	location=loc;	
}
