//
// 8.02.2003
//



 var imgpath = '/images/';
 //Roll-over
        function over(item){

                document[item].src=imgpath+item+"_2.gif" ;
        }


        function out(item){

                document[item].src=imgpath+item+".gif" ;
        }




// preload Images

        function preloadImages() 
        {
        if (document.images)
                {

                var preloaded = new Array(3);

				preloaded[1] = new Image();
				preloaded[1].src = imgpath + "home.gif";

				preloaded[2] = new Image();
				preloaded[2].src = imgpath + "search_2.gif";

				preloaded[3] = new Image();
				preloaded[3].src = imgpath + "mail_2.gif";

                }
        }

// Open page in new window

		function openPage(strUrl, strNumber) {
				if (strNumber==0){
					strNumber=Math.round(Math.random(strNumber)*100000)
				}

				var Win=open(strUrl, strNumber, "width=680,height=400,left=20,top=50,toolbar=0,location=1,menubar=1,scrollbars=1,resizable=1,status=1");
                
				if(Win.closed!=true){
                        Win.focus();
        	    }

		}

		function openImg(strUrl, strNumber) {
				if (strNumber==0){
					strNumber=Math.round(Math.random(strNumber)*100000)
				}

				var Win=open(strUrl, strNumber, "width=620,height=450,left=31,top=20,toolbar=0,location=0,menubar=1,scrollbars=1,resizable=1,status=1");
                
				if(Win.closed!=true){
                        Win.focus();
        	    }

		}		
		
         function openUp(strUrl, strNumber, strParam)  {
			if (strNumber==0){
				strNumber=Math.round(Math.random(strNumber)*100000)
			}		 
                var Win=window.open(strUrl, strNumber, strParam);
                if(Win.closed!=true){
                        Win.focus();
                }
        }


