if (parent.frames.length > 0) {
    parent.location.href = self.document.location
}


function fixNetscapeResize() {
	if (document.layers) { window.location.reload(); }
}

function gotoThis(daURL) {
	window.location = daURL;
}

function mOver(daImg) {
try {
	daNewImage = eval(daImg + "ON");
	if (document.all) { document.all[daImg].src = daNewImage.src; }
	if (document.layers) { document.images[daImg].src = daNewImage.src; }
	if (!document.all && document.getElementById) { document.getElementById(daImg).setAttribute('src',daNewImage.src); }
   }
catch(exception) {
}
}

function mOut(daImg) {
try {
	daNewImage = eval(daImg + "OFF");
	if (document.all) { document.all[daImg].src = daNewImage.src; }
	if (document.layers) { document.images[daImg].src = daNewImage.src; }
	if (!document.all && document.getElementById) { document.getElementById(daImg).setAttribute('src',daNewImage.src); }
}
catch(exception) {
}
}

function languageSelect(thisElement) {
	var myURL = thisElement.value;
	window.location = myURL;
}

