			if (!document.layers){

			// Choose size and colours here!!!!!!!!!!!!!!!!!!!!!!!!!!
			Width=120;
			Font='Arial';
			FontSize=14;
			AFontColor='#000080';
			BFontColor='#000080';
			CFontColor='#ff0000';
			AFontColor2='#ffffff';
			BFontColor2='#ffffff';
			CFontColor2='#ff0000';
			FontWeight='bold'; //normal or bold!
			BackGround='#ffffff'; //Same as your body bgcolor!
			BackGround2='#000080';
			BorderDepth=1;
			BorderLight='#000080';
			BorderShad='#000080';

			//Nothing needs altering past here!!!!!!!!!!!!!!!!!!!!!!
			function On(id){
			with(id.style){
			color=BFontColor;
			borderTopColor=BorderLight;
			borderLeftColor=BorderLight; //BorderLight;
			borderRightColor=BorderShad;
			borderBottomColor=BorderShad;
			}
			}
			function On2(id){
			with(id.style){
			color=AFontColor2;
			borderTopColor=BorderLight;
			borderLeftColor=BorderLight; //BorderLight;
			borderRightColor=BorderShad;
			borderBottomColor=BorderShad;
			}
			}
			function Off(id){
			with(id.style){
			color=AFontColor;
			borderTopColor=BackGround;
			borderLeftColor=BackGround;
			borderRightColor=BackGround;
			borderBottomColor=BackGround;
			}
			}
			function Off2(id){
			with(id.style){
			color=BFontColor2;
			borderTopColor=BackGround;
			borderLeftColor=BackGround;
			borderRightColor=BackGround;
			borderBottomColor=BackGround;
			}
			}
			function Down(id){
			with(id.style){
			color=CFontColor;
			borderTopColor=BorderShad;
			borderLeftColor=BorderShad;
			borderRightColor=BorderLight;
			borderBottomColor=BorderLight;
			}
			}
			function Link(Url,Target,Txt,Typ){

			if (Typ == 2){
			document.write("<a href='"+Url+"' target='"+Target+"'>"
			+"<div style='position:relative;"
			//+"width:"+Width+"px;height:"+FontSize+"px;"
			+"border-width:"+BorderDepth+"px;"
			+"border-color:"+BackGround+";"
			+"border-style:solid;"
			+"padding:"+0+"px;"
			//+"background:"+BackGround+";" //Orginal
			+"background:"+BFontColor+";"
			+"font-family:"+Font+";"
			+"font-size:"+FontSize+"px;"
			+"line-height:"+FontSize*1.2+"px;"
			+"font-weight:"+FontWeight+";"
			+"text-align:left;"
			//+"color:"+AFontColor+";"    Orginal
			+"color:"+BackGround+";"
			+"margin-top:0px;"
			+"cursor:hand'"
			+"onMouseOver='javascript:On2(this)'"
			+"onMouseOut='javascript:Off2(this)'"
			+"onMouseDown='javascript:Down(this)'>"
			+Txt+"</div></a>");
			}
			else if (Typ=1){
            
            document.write("<a href='"+Url+"' target='"+Target+"'>"
			+"<div style='position:relative;"
			//+"width:"+Width+"px;height:"+FontSize+"px;"
			+"border-width:"+BorderDepth+"px;"
			+"border-color:"+BackGround+";"
			+"border-style:solid;"
			+"padding:"+0+"px;"
			+"background:"+BackGround+";"
			+"font-family:"+Font+";"
			+"font-size:"+FontSize+"px;"
			+"line-height:"+FontSize*1.2+"px;"
			+"font-weight:"+FontWeight+";"
			+"text-align:left;"
			+"color:"+AFontColor+";"
			+"margin-top:0px;"
			+"cursor:hand'"
			+"onMouseOver='javascript:On(this)'"
			+"onMouseOut='javascript:Off(this)'"
			+"onMouseDown='javascript:Down(this)'>"
			+Txt+"</div></a>");
            
            }
			}
			}
			
			
            
            
			function Temp(){
			alert("TEST");
			}
			//-->
