<!--

  var browserplaneOK = false;
  var browserOK = false;
  var pics;

  browserOK = true;
  pics = new Array();

var objCount = 0; 

function preload(name, one, two) {  

  if (browserOK) {     
    pics[objCount] = new Array(2);
    pics[objCount][0] = new Image();
    pics[objCount][0].src = one;
    pics[objCount][1] = new Image();
    pics[objCount][1].src = two;
    pics[objCount][2] = name;
        objCount++;
  }
}

function on(name){
  if (browserOK) {
     for (x = 0; x < objCount; x++) {
        if (name == pics[x][2]) { 
                  document.images[pics[x][2]].src = pics[x][1].src;
        } 
         }
  }
}

function off(name){
  if (browserOK) {
     for (x = 0; x < objCount; x++) {
        if (name == pics[x][2]) {
                   document.images[pics[x][2]].src = pics[x][0].src;
                }
         }
   }
}

function openPopup(newin) {
	flyout=window.open(newin,"pagina","resizable=no,scrollbars=no,width=400,height=530,top=10,left=10")
}

function positionAllDivs() {

if (parseInt(navigator.appVersion)>3) {
	if (navigator.appName=="Netscape") {
		winW = window.innerWidth;
	}

	if (navigator.appName.indexOf("Microsoft")!=-1) {
		winW = document.body.offsetWidth;
	}
}

var detect = navigator.userAgent.toLowerCase();
var OS,version,total,thestring;

if (!OS)
{
	if (checkIt('linux')) OS = "Linux";
	else if (checkIt('x11')) OS = "Unix";
	else if (checkIt('mac')) OS = "Mac"
	else if (checkIt('win')) OS = "Windows"
	else OS = "an unknown operating system";
}

function checkIt(string)
{
	place = detect.indexOf(string) + 1;
	thestring = string;
	return place;
}

var MOZ5 = (navigator.userAgent.indexOf("Mozilla/5") != -1);
var OP   = (navigator.userAgent.indexOf("Opera") != -1);
var NN   = (navigator.appName == "Netscape") && !OP;
var NN6  = NN && MOZ5;
var IE50 = (navigator.userAgent.indexOf("MSIE 5.0") != -1);
var IE55 = (navigator.userAgent.indexOf("MSIE 5.5") != -1);
var IE60 = (navigator.userAgent.indexOf("MSIE 6.0") != -1);
var SAF = (navigator.userAgent.indexOf("Safari") != -1);


if(OS=="Mac"){
	if(SAF){
		pos = winW - 750;
		pos = pos/2;
		if(winW <= 800){
			pos = pos - 47;
		} else {
			pos = pos - 46;
		}
		posy = 0;
	} else if(NN || NN6){
		pos = winW - 750;
		pos = pos/2;
		if(winW <= 800){
			pos = pos - 53;
		} else {
			pos = pos - 54;
		}
		posy = 0;
	} else if(OP){
		pos = winW - 750;
		pos = pos/2;
		pos = pos - 36;
		posy = 0;
	} else {
		pos = winW - 750;
		pos = pos/2;
		if(winW <= 800){
			pos = pos - 46;
		} else {
			pos = pos - 47;
		}
		posy = 0;
	}
} else {
	if(NN || MOZ5 || NN6){
		pos = winW - 750;
		pos = pos/2;
		pos = pos - 54;
		posy = 1;
	} else {
		pos = winW - 750;
		pos = pos/2;
		pos = pos - 56;
		posy = 0;
	}
}

positionDiv('drop001',pos,posy)

}

//-->
