/*
JavaScript Cookie Functions
Language: JavaScript 1.0
Copyright (c) 2002-2004 Custom Web Design and Software Development Services by Online Web Solutions
Website URL: http://www.online-web-solutions.com
*/


function bookmarkIt() { 
  var bookmarktitle = document.title;
  var bookmarkurl = document.location;
  var netscape
  var macintosh
  var isMac
  
  netscape="Attention Netscape Users. To Bookmark this page please click the page you would like to bookmark and press CTRL+D. If you would like to add this page to your Netscape Sidebar, please click OK on the next window which appears.";
  macintosh="Attention Macintosh User. To Bookmark this page please click the page you would like to bookmark and press CTRL+D.";

  if (window.sidebar&&window.sidebar.addPanel) { 
    alert(netscape);
    window.sidebar.addPanel(bookmarktitle, bookmarkurl,""); 
  } else if (isMac) {
    alert(macintosh);
  } else if (document.all) {
    window.external.AddFavorite(bookmarkurl, bookmarktitle);
  } else if (window.opera && window.print) {
    return true;
  }
}


function printpage() {
bV = parseInt(navigator.appVersion);
if (bV >= 4) window.print();
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function mail2(){document.location="mailto:wanda@beachbreaks.com?cc=satinfo@studentadvtrav.com&subject="+document.location;}
