﻿//Seite besuchen
 function getURL(name)
{   
    //bookmark URL
    var destURL = "";
    
    switch (name) 
    {    
      case 'ezclick': 
      destURL += "http://www.ezclick.de/";
      break;  
      case 'theeditors': 
      destURL += "http://www.the-editors.de/";
      break;   
      case 'exelution': 
      destURL += "http://www.exelution.com/";
      break;   
      case 'bishop': 
      destURL += "http://www.bishop-productions.de/";
      break;        
    }
  //Anfrage senden
  window.open(destURL);
}
