//used in popup windows to write either "close window" or "return to rentals.com" in the top-right corner

function isPopup() {
if (window.top.name.indexOf("Rentals") > -1) return true;
else return false;
}

function openAnchor(){
if(!isPopup()) document.write('<a href="/" target="_top">');
}

function closeAnchor(){
if(!isPopup()) document.write('</a>');
}

function closeWindowText() {
//window.top.focus();        
if(isPopup()) document.write('<a href="javascript:window.top.close()"><b>Close Window</b></a>');
else document.write('<a href="/" target="_top"><b>Return to Rentals.com</b></a>');
}

function closeWindowButton() {
if(isPopup()) document.write('<a href="javascript:window.top.close()"><img src="/images/common/close.gif" width="22" height="18" border="0"></a>');
else document.write('<a href="/" target="_top"><img src="/images/common/sm_rarrow.gif" width="8" height="9" border="0" alt=""></a>');
}
