function getElement(e){
	if(document.all) return document.all[e];
	else return document.getElementById(e);
}

var images = new Array();
images["home1"] = "images/menu-a-home.jpg";
images["home2"] = "images/menu-p-home.jpg";
images["biography1"] = "images/menu-a-biography.jpg";
images["biography2"] = "images/menu-p-biography.jpg";
images["calendary1"] = "images/menu-a-calendary.jpg";
images["calendary2"] = "images/menu-p-calendary.jpg";
images["multimedia1"] = "images/menu-a-multimedia.jpg";
images["multimedia2"] = "images/menu-p-multimedia.jpg";
images["shop1"] = "images/menu-a-shop.jpg";
images["shop2"] = "images/menu-p-shop.jpg";
images["members1"] = "images/menu-a-members.jpg";
images["members2"] = "images/menu-p-members.jpg";
images["contact1"] = "images/menu-a-contact.jpg";
images["contact2"] = "images/menu-p-contact.jpg";



function cImg(dstImg,sourceImg){
	getElement(dstImg).src = images[sourceImg];
}

function erase(object){
	getElement(object).value = "";
	}

function img(name,dir){
	var path = "img.php?img="+name+"&dir="+dir;
	window.open(path,"","status=no,toolbar=no,menubar=no,location=no");
	}

function resize(width,height){
	window.resizeTo(width,height);
	}

function submitFilter(form){
	getElement(form).submit();
	}
