// JavaScript Document

    if (document.images) {// Active Images
        	star1on = new Image();      
            star1on.src = "images/starr.gif"; 
            star1off = new Image();      
            star1off.src = "images/star.gif"; 
			star2on = new Image();      
            star2on.src = "images/starr.gif"; 
            star2off = new Image();      
            star2off.src = "images/star.gif"; 
			star3on = new Image();      
            star3on.src = "images/starr.gif"; 
            star3off = new Image();      
            star3off.src = "images/star.gif"; 
        	star3bon = new Image();      
            star3bon.src = "images/starr.gif"; 
            star3boff = new Image();      
            star3boff.src = "images/star.gif"; 
			star4on = new Image();      
            star4on.src = "images/starr.gif"; 
            star4off = new Image();      
            star4off.src = "images/star.gif"; 
			star5on = new Image();      
            star5on.src = "images/starr.gif"; 
            star5off = new Image();      
            star5off.src = "images/star.gif"; 
   			star5bon = new Image();      
            star5bon.src = "images/starr.gif"; 
            star5boff = new Image();      
            star5boff.src = "images/star.gif"; 
			star6on = new Image();      
            star6on.src = "images/starr.gif"; 
            star6off = new Image();      
            star6off.src = "images/star.gif"; 
			star7on = new Image();      
            star7on.src = "images/starr.gif"; 
            star7off = new Image();      
            star7off.src = "images/star.gif"; 
			star8on = new Image();      
            star8on.src = "images/starr.gif"; 
            star8off = new Image();      
            star8off.src = "images/star.gif"; 
			star9on = new Image();      
            star9on.src = "images/starr.gif"; 
            star9off = new Image();      
            star9off.src = "images/star.gif"; 
			clickhereon = new Image();      
            clickhereon.src = "images/clickhere2.gif"; 
            clickhereoff = new Image();      
            clickhereoff.src = "images/clickhere.gif"; 
			gotoon = new Image();      
            gotoon.src = "images/goto2.gif"; 
            gotooff = new Image();      
            gotooff.src = "images/goto.gif"; 
			
        }
        
        // Function to 'activate' images.
         
function imgOn(imgName) {
        
		if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}
         
// Function to 'deactivate' images.
         
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName  + "off.src");
        }
}

function winPOP(url){
window.open(url, "","menu=yes,resizable=yes,width=700,height=500,scrollbars=yes,toolbar=yes,location=yes")
}

