function gotoURL(page) {
        window.open(page, '_blank',"height=500,width=550,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,top=80"); 
}

function gotoEmailThis(page) {
        window.open(page, '_blank',"height=470,width=490,status=no,toolbar=no,menubar=no,location=no,scrollbars=no,top=80");
}

var IE4 = (document.all && !document.getElementById) ? true : false;
var NS4 = (document.layers) ? true : false;
var IE5 = (document.all && document.getElementById) ? true : false;
var N6 = (document.getElementById && !document.all) ? true : false;

function getElement(id) {
  if (NS4) {return eval("document." + id)}
  else if (IE4) {return eval("document.all." + id)}
  else if (IE5 || N6) {return document.getElementById(id)};
}

function openPresentation(page){
	window.open(page,'_blank',"height=460,width=610,status=no,toolbar=no,menubar=no,location=no,scrollbars=no,top=80");
}

