//
//    main_functions.js
//
//    Created by Yolanda van Kimmenade 19/01/07
//
//    Purpose : These functions to simple popups etc
//

 function popitup(url) { 
    newwindow=window.open(url,'carwin','height=500,width=500, resizable=yes, scrollbars=yes');
    if (window.focus) {
         newwindow.focus()
    }
    return false; 
} 
 function popexcess(url) {
    newwindow=window.open(url,'excesswin','height=500,width=500,scrollbars=yes');
    if (window.focus) {
         newwindow.focus()
    }
    return false; 
 } 

 function poplarger(url) {
    newwindow=window.open(url,'info','height=800,width=600, resizeable=yes, scrollbars=yes');
    if (window.focus) {
         newwindow.focus()
    }
    return false; 
 }



var bookmarkurl="http://www.discovery-carhire.com.au/";
var bookmarktitle="Discovery Car Hire - Compare & Save";

function addbookmark() {
if (navigator.appName=='Netscape')
   alert("Please close this popup, and then press CTRL+D to bookmark this site.");
else 
   window.external.AddFavorite(bookmarkurl,bookmarktitle);
}