// JScript File

function ReplaceImage(image,dest)
{
    image.src = dest;
}

function ShowMapPopup(lat,lon,propertyrefid,maptype)
{
    var dest = '/Renter/MapPopupG.aspx?Lat=' + lat + '&Lon=' + lon + '&PropertyRefID=' + propertyrefid + '&Type=' + maptype;
    var winref = window.open(dest,"_blank","width=615, height=475, menubar=no, location=no, resizable=no, scrollbars=no, status=no");
}

function ShowMultiMapPopup(properties)
{
    var dest = '/Renter/MapPopup.aspx?Type=2&Properties=' + properties;
    var winref = window.open(dest,"_blank","width=615, height=475, menubar=no, location=no, resizable=no, scrollbars=no, status=no");
}

function ShowDirections(lat,lon,propertyrefid)
{
    var dest = '/Renter/DirectionsPopupG.aspx?Lat=' + lat + '&Lon=' + lon + '&PropertyRefID=' + propertyrefid;
    var winref = window.open(dest,"_blank","width=537, height=445, menubar=no, location=no, resizable=no, scrollbars=yes, status=no");
}

function ShowPopupNoScroll(dest,width,height)
{
    var xPos, yPos;
    
    xPos = (screen.width - width) / 2;
    yPos = (screen.height - height) / 2;

	var newWindow = window.open(dest,"_blank","width="+width+",height="+height+",left="+xPos+",top="+yPos+ " menubar=no, location=no, resizable=no, scrollbars=no, status=no");   
}
function ShowPopupCoupon(dest,width,height)
{
    var xPos, yPos;
    
    xPos = (screen.width - width) / 2;
    yPos = (screen.height - height) / 2;

	var newWindow = window.open(dest,"_blank","width="+width+",height="+height+",left="+xPos+",top="+yPos+ " menubar=no, location=no, resizable=no, scrollbars=yes, status=no");   
}

function ShowPopup(dest,width,height)
{
    var xPos, yPos;
    
    xPos = (screen.width - width) / 2;
    yPos = (screen.height - height) / 2;

	var newWindow = window.open(dest,"_blank","width="+width+",height="+height+",left="+xPos+",top="+yPos+ " menubar=no, location=no, resizable=no, scrollbars=yes, status=no");   
}

function ShowPopupWithMenubar(dest,width,height)
{
    var xPos, yPos;
    
    xPos = (screen.width - width) / 2;
    yPos = (screen.height - height) / 2;

	var newWindow = window.open(dest,"_blank","width="+width+",height="+height+",left="+xPos+",top="+yPos+ " menubar=yes, location=no, resizable=no, scrollbars=yes, status=no");   
}


function DisplayImage(imageRefID,imageWidth,imageHeight)
{
    var dest;
    var winWidth, winHeight;
    var xPos, yPos;
    
    winWidth = imageWidth + (imageWidth/2);
    winHeight = imageHeight + (imageHeight/2);
    
    xPos = (screen.width - winWidth) / 2;
    yPos = (screen.height - winHeight) / 2;
    
    dest = '../ImageViewer.aspx' + '?imagerefid=' + imageRefID;

	var newWindow = window.open(dest,"_image","width="+winWidth+",height="+winHeight+",left="+xPos+",top="+yPos+ " menubar=no, location=no, resizable=no, scrollbars=yes, status=no");   
}

function UpdateResults(result, context) 
{ 
    //alert(result);
}
function ShowMyFavPopup(dest,width,height)
{
    var xPos, yPos;
    
    xPos = (screen.width - width) / 2;
    yPos = (screen.height - height) / 2;

	var newWindow = window.open(dest,"_blank","width="+width+",height="+height+",left="+xPos+",top="+yPos+ " menubar=no, location=no, resizable=no, scrollbars=no, status=no");   
}