function fnNewWindow( MyURL, MyProperties, MyWidth, MyHeight )
{
var newWindow;
var strProperties = "";

	if (MyProperties == "")
	{
		if (MyWidth != "")
			strProperties = 'scrollBars=no,resizable=no,toolbar=no,menubar=no,location=no,directories=no,width=' + MyWidth;
		else
			strProperties = 'scrollBars=no,resizable=no,toolbar=no,menubar=no,location=no,directories=no,width=500';
	
		if (MyHeight != "")
			strProperties += ',height=' + MyHeight;
		else
			strProperties += ',height=500';
	}
	else
		strProperties = MyProperties
//		strProperties = 'status=yes,scrollBars=yes,resizable=no,toolbar=no,menubar=no,location=no,directories=no,width=600,height=600';
	newWindow = window.open(MyURL, "", strProperties);
}


function propertyMap(propertyGuid, mlsNumber) 
{
	var url = '/map/ViewMap.aspx?propertyGuid=' + propertyGuid + '&mlsNumber=' + mlsNumber;
    mapWindow = window.open(url, "", "width=670,height=500,status=no,toolbar=yes,location=no,menu=no,scrollbars=no,resizable=no");    
}

function propertyMapAddress(address) 
{
	var url = '/map/ViewMap.aspx?address=' + address;
    mapWindow = window.open(url, "", "width=670,height=500,status=no,toolbar=yes,location=no,menu=no,scrollbars=no,resizable=no");    
}

/*
function propertyMap(lsPan, lsCust, lsA2, lsA3, lsAddrPickBest, lsAddrErrMinScale, lsW, lsH, lsS, lsC, lsI, lsIcon1, lsIcon2, lsRouteId, lsRouteArrow, lsSS) 
{
    var s = '/map/map.aspx?lsPan='+lsPan+'&lsCust='+lsCust+'&lsA2='+lsA2+'&lsA3='+lsA3+'&lsAddrPickBest='+lsAddrPickBest+'&lsAddrErrMinScale='+lsAddrErrMinScale+'&lsW='+lsW+'&lsH='+lsH+'&lsS='+lsS+'&lsC='+lsC+'&lsI='+lsI+'&lsIcon1='+lsIcon1+'&lsIcon2='+lsIcon2+'&lsRouteId='+lsRouteId+'&lsRouteArrow='+lsRouteArrow+'&ss='+lsSS;
    mapWindow = window.open(s,"","width=670,height=500,status=no,toolbar=yes,location=no,menu=no,scrollbars=no,resizable=no");    
}
*/
