/*
============================================================
Script:     Open Page in Frameset Script
Functions:  If a page is intended to be opened only within
            a frameset, this script refers the browser
            immediately to the frameset page
Author:     Francesco Abbattista (v2)
============================================================

Hinweis für M.Sari:
-> Dieses Verfahren hilft u.a. den Suchmaschinen die INDEX Seite
   korrekt zu indizieren und nicht fälschlicherweise die Unterframes!

*/

var bookmarkurl="http://www.lastminit.de";
var bookmarktitle="LASTMINIT - Tagesaktuelle last minute Reisen";


	
if (parent.location.href == self.location.href){
	// change the url below to the url of the
	// frameset page...
	window.location.href = 'http://www.lastminit.de';
}

function addbookmark(){
  if (document.all){
	 if (confirm("Möchten Sie LASTMINIT zu Ihren Favoriten hinzufügen?")){
     window.external.AddFavorite(bookmarkurl,bookmarktitle);}}
 
  else{
	 alert('Bitte verwenden Sie STRG und D um diese Seite zu Ihren Favoriten hinzuzufügen:\n"'+bookmarkurl+'".');}
}

 

