// STYLESHEETS
if (document.layers){	
	document.write("<LINK HREF=\"../content/ns_style.css\" REL=STYLESHEET TYPE=TEXT/CSS>");
} else {
	document.write("<LINK HREF=\"../content/ie_style.css\" REL=STYLESHEET TYPE=TEXT/CSS>");	
}	

items = 9;
path = "../icon/";
tag = "iwa";

top_on_images = new Array(items);
top_off_images = new Array(items);

for(var i=1;i <= items;i++){
	top_on_images[i] = new Image();
	top_on_images[i].src = path + tag + i + "on.gif";
	top_off_images[i] = new Image();
	top_off_images[i].src = path + tag + i + "off.gif";
}

NS3 = (navigator.userAgent.indexOf("Mozilla/3") != -1) | (navigator.userAgent.indexOf("Mozilla/4") != -1);

var clicked_item = "";

function mouse_over(item){
         if (item!=clicked_item){
				document["icon"+item].src=top_on_images[item].src;
		}
    }
function mouse_out(item){
          if (item!=clicked_item) {
				document["icon"+item].src=top_off_images[item].src;
			}
	    }
	
function OpenLink(whereto){	

	window.open(whereto,"","width=800 ,height=600,screenX=15,screenY=15,top=15,left=15,scrollbars=yes,resizable=yes,status=no,toolbar=yes,menubar=yes,location=no");

}	