<!--
// Replace URL if frameset-variable != 1 or does not exist
var lengthens = self.location.pathname.length; //length of file name
var PrintedUrl = self.location.pathname.substring(1,lengthens); //store file name
var TargetFile = "index.html?"+PrintedUrl; //self.location.pathname; //store new address

if (top.location == self.document.location){
if (!top.FramesetLoaded){
if (document.images) //determine browser version
  top.location.replace(TargetFile);
 else 
  top.location.href = TargetFile;
}}

if (top.frames[1]){
if (!top.frames[1].FramesetLoaded && !top.FramesetLoaded){//if no frame...
 if (document.images) //determine browser version
  top.location.replace(TargetFile);
 else 
  top.location.href = TargetFile;
}}

if (top.NOTOOL){
 if (!top.NOTOOL.FramesetLoaded){
   if (document.images) //determine browser version
  top.location.replace(TargetFile);
 else 
  top.location.href = TargetFile;
}}

function SeMaTo(name, company, domain) {
      locationstring = 'ma' + 'ilto:' + name + '@' + company + '.' + domain;
      window.location.replace(locationstring);
   }

//-->

