//Script anti-frame
if (top.frames.length != 0) {
	top.location=location;
}

var IE4 = document.all;
var NS4 = document.layers;
var NS6 = document.getElementById;

function getStyle(id) {
	return NS4 ? document[id] : NS6 ? document.getElementById(id).style : document.all[id].style;
}

function hideDiv(id) {
	getStyle(id).visibility = NS4 ? "hide" : "hidden";
}

function showDiv(id) {
	getStyle(id).visibility = NS4 ? "show" : "visible";
}

function openPop(URL, target, w, h, scroll, resize) {
	window.open(URL, target, 'height=' + h + ',width=' + w + ',top=' + (screen.height - h) / 2 + ',left=' + (screen.width - w) / 2 + ',scrollbars='+scroll+',resizable=0').window.focus();
}

// script dhtml do 'QuickLinks'
function HideLayer(layer) {
	hideDiv(layer);
}

function ShowLayer(layer) {
	for (i = 1; i <= 3; i++) {
		hideDiv(i);
	}
	showDiv(layer);
}