// JavaScript Document

var h = document.body.clientHeight;
var myh = 320;
var centered = ((h/2)-(myh/2));

function eid(){


var eided = getCookie('seenalready');
if (eided == null && navigator.appName == "Microsoft Internet Explorer")
{

makeit();
setCookie('seenalready', 1, null, '/');

}
}



function makeit()
{


document.write("<div id='Layer1' style='position:absolute; left:0px; top:0px; width:100%; height:100%; z-index:1; visibility: visible;'><div align='center'>");
document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='100%' height='100%'>");
document.write("<param name='movie' value='globe.swf'><param name='quality' value='high'><PARAM NAME='wmode' VALUE='transparent'><param name='LOOP' value='false'>");
document.write("<embed src='globe.swf' width='100%' height='100%' loop='false' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash'></embed></object>");
document.write("</div></div>");
}





function doit(){
document.all.Layer1.style.visibility = "hidden";

}

function getCookie(name){
  var cname = name + "=";               
  var dc = document.cookie;             
  if (dc.length > 0) {              
    begin = dc.indexOf(cname);       
    if (begin != -1) {           
      begin += cname.length;       
      end = dc.indexOf(";", begin);
      if (end == -1) end = dc.length;
        return unescape(dc.substring(begin, end));
    } 
  }
  return null;
}


function setCookie(name, value, expires, path, domain, secure) {
  document.cookie = name + "=" + escape(value) + 
  ((expires == null) ? "" : "; expires=" + expires.toGMTString()) +
  ((path == null) ? "" : "; path=" + path) +
  ((domain == null) ? "" : "; domain=" + domain) +
  ((secure == null) ? "" : "; secure");
}

function delCookie (name,path,domain) {
  if (getCookie(name)) {
    document.cookie = name + "=" +
    ((path == null) ? "" : "; path=" + path) +
    ((domain == null) ? "" : "; domain=" + domain) +
    "; expires=Thu, 01-Jan-70 00:00:01 GMT";
  }
}

function show_again() {
delCookie('seenalready', '/');
self.location.reload();
}



