// remove frames
  if (top != self) {
    top.location.href = location.href;
  } 

// Print This Page using print.css
  function PrintWindow() {
	  var originalTitle;

    // modify title before printing
  	originalTitle = document.title;
  	document.title = document.title + " from KoolKiosk.com";
  
  	// print
  	window.print();
  
    // reset to original value after printing
  	document.title = originalTitle;
}

// Add to Favorites 
  function AddToFavs() {
	  var originalTitle;

    // modify title before adding
  	originalTitle = document.title;
  	document.title = document.title + " at KoolKiosk.com";
  
  	// add
  	window.external.AddFavorite(location.href, document.title);
  
    // reset to original value 
  	document.title = originalTitle;
}
