/* FUNCTIONS */
resetState = new Array();

function resetInput(element,name) {
	if(!resetState[name]) {
   	resetState[name] = true;
      element.value = "";
   }
}

function hoverNav(element,name) {
	element.style.backgroundImage = "url('"+layout+"header_nav_hovered.gif')";
}

function unhoverNav(element) {
	element.style.background = "none";
}

var isIE_PNG = (navigator.appName == "Microsoft Internet Explorer" && navigator.userAgent.indexOf('Opera') == -1);

function Popup(path,name,width,height,scrolling,resizable)
 {
   window.open(path,name,"width="+width+",height="+height+",scrollbars="+scrolling+",resizable="+resizable);
 }
