<!-- Hiding

//test if whole page is loading.
	if (parent.frames.length != 4 )
	top.location.href = "../index.htm";

// Controls multiple frames.
	function FrameUpdate(URL1, URL2) 
	{
		parent.right.location.href = URL1;
		parent.bottom.location.href = URL2;
	}

// Loads and flips images.
	function LoadImgOver(URL3, name)
	{
		a = new Image;
		a.src = URL3;
		document.images[name].src=a.src
	}
	function LoadImgOut (URL4, name)
	{
		b = new Image;
		b.src = URL4;
		document.images[name].src=b.src
	}

// New window
	function win(URL5, h, w, s)
	{
		msg=window.open(URL5,"","height="+ h +",width="+ w +",left=50,top=50,scrollbars="+ s +"");
	}

// Popup window
	var popupwindow_window = null;
   	function PopupWindow(status, URL6, w, h)
       	{
      		if(status != 0) 
	  	{
	     		if(popupwindow != null) popupwindow.focus(); 
		 	else 
		    	{ 
		    		var popupwindow = open(URL6, "popupwindow", "width="+ w +",height="+ h +",top=50,left=50");
				popupwindow_window = popupwindow;
			}
		} 
      		else 
		{
			if(popupwindow_window != null) popupwindow_window.close();
		}
      	}

//Done Hiding -->

