// JavaScript Document

//-----------------------------------------------
// Disables iframe
//-----------------------------------------------

	function breakout_of_frame()
	{
	  if (top.location != location) {
		top.location.href = document.location.href ;
	  }
	}
	
	breakout_of_frame();

//-----------------------------------------------
// Hides SEARCH Field Keywords
//-----------------------------------------------

	function remove_label(){
		document.getElementById("search_label").style.display = "none";
	}
	
//-----------------------------------------------
// Generic Popup
//-----------------------------------------------

	function popUp(URL,width,height) {
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=" + width + ",height=" + height + "');");
	}
	
//-----------------------------------------
// used for dropdowns IE6 & 7
//-----------------------------------------
	
	function startList() {
		
		if (document.all&&document.getElementById) {
			navRoot = document.getElementById("nav");
			for (i=0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
				if (node.nodeName=="LI") {
					node.onmouseover=function() {
						this.className+=" over";
					}
					node.onmouseout=function() {
						this.className=this.className.replace(" over", "");
					}
				}
			}
		}
	}