//---------------------------------------------------------------------||
// FUNCTION:    SetCookie                                              ||
// PARAMETERS:  name, value, expiration date, path, domain, security   ||
// RETURNS:     Null                                                   ||
// PURPOSE:     Stores a cookie in the users browser                   ||
// ADAPTED BY:  Roland Koch : www.knoxpuzzles.com/WebDesign.html       ||
//---------------------------------------------------------------------||
function SetCookie (name,value,expires,path,domain,secure) {
   document.cookie = name + "=" + escape (value) +
                     ((expires) ? "; expires=" + expires.toGMTString() : "") +
                     ((path) ? "; path=" + path : "") +
                     ((domain) ? "; domain=" + domain : "") +
                     ((secure) ? "; secure" : "");
}
//    if (self.location == top.location){
//       SetCookie("Quelle", Quelle, null, "/");
//       }
    if (self.location == top.location){
       self.location.replace('http://www.knoxpuzzles.com/StartEn.html')
//       self.location.replace('http://localhost/knoxpuzzles/StartEn.php')
       }