﻿// JavaScript Document
function CreateBookmarkLink() {
 title = "Summer Tours"; 
 url = "http://www.summer-tours.com";
 if (window.sidebar) { // Mozilla Firefox Bookmark
  window.sidebar.addPanel(title, url,"");
 } else if( window.external ) { // IE Favorite
  window.external.AddFavorite( url, title);
 }
 else if(window.opera && window.print) { // Opera Hotlist
  return true;
 }
}

function openPopupWindow(url, width, height) {
	var w = window.open(url, "POPUP", "width="+width+",height="+height+",status=0,menubar=0,scrollbars=0,toolbar=0");
	if (w) w.focus();
	return false;
}