<!-- ;

// opacity code written by mr.maX, http://www.maxworld.co.yu/, thanks maX!

if (parent.frames.length > 0) parent.location.href = self.document.location;

var pageLoaded = false;


function showStatus() {
	window.status = arguments[0];		
	return true;

}

function muncGetOpacity() {
	if (isIE) {	return arguments[0].filters.alpha.opacity; } else
	if (isMozilla) { return parseInt(arguments[0].style.MozOpacity) }
}

function muncSetOpacity() {
	if (isIE) {	arguments[0].filters.alpha.opacity = arguments[1]; } else
	if (isMozilla) { arguments[0].style.MozOpacity = arguments[1]+"%"; }

}

if (navigator.appName == "Netscape") {
    layerRef="document.layers";
    styleSwitch="";
    } else {
        layerRef="document.all";
        styleSwitch=".style";
    }

function showLayer(layerName) {
    eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="visible"');
}
        
function hideLayer(layerName) {
    eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="hidden"');
}


ns=0;
layerRef="document.all"
styleSwitch=".style"
if (navigator.appName == "Netscape") {
    ns=1;
    layerRef="document.layers"
    styleSwitch=""

}

menutop=130;
if (ns) menutop=133;

function sety(layerName,y) {
    eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.top='+y);
}

// -->