//=======================================================================
// Preload Images and RollOver
//=======================================================================

function styleCalque(idCalque) {
	if (document.all) { // Netscape
		calqueStyle = document.all[idCalque].style;
	}else if (document.layers) { // Internet Explorer
		calqueStyle = document.layers[idCalque];
	}else if (document.getElementById) { // Netcsape 6
		calqueStyle = document.getElementById(idCalque).style;
	}

	return calqueStyle;
}



function showBody() {
	styleCalque('bbody').visibility = "visible";
}



function checkOS() {
	if(navigator.userAgent.indexOf('IRIX') != -1) { var OpSys = "Irix"; }
	else if((navigator.userAgent.indexOf('Win') != -1) && (navigator.userAgent.indexOf('95') != -1)) { var OpSys = "Windows95"; }
	else if(navigator.userAgent.indexOf('Win') != -1) { var OpSys = "Windows3.1 or NT"; }
	else if(navigator.userAgent.indexOf('Mac') != -1) { var OpSys = "Macintosh"; showBody(); }
	else { var OpSys = "other";	showBody(); }

	return OpSys;
}