function MM_openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}

//preload onstate:

        var beige_img_on = new Image;
        var black_img_on = new Image;
        var burgundy_img_on = new Image;
        var columbia_img_on = new Image;
        var darkgreen_img_on = new Image;
        var flourescent_green_img_on = new Image;
        var gray_img_on = new Image;
        var lilac_img_on = new Image;
        var navy_img_on = new Image;
        var orange_img_on = new Image;
        var pink_img_on = new Image;
        var purple_img_on = new Image;
        var red_img_on = new Image;
        var royal_img_on = new Image;
        var spruce_img_on = new Image;
        var turquoise_img_on = new Image;
        var yellow_img_on = new Image;
        
        var beige_img_off = new Image;
        var black_img_off = new Image;
        var burgundy_img_off = new Image;
        var columbia_img_off = new Image;
        var darkgreen_img_off = new Image;
        var flourescent_green_img_off = new Image;
        var gray_img_off = new Image;
        var lilac_img_off = new Image;
        var navy_img_off = new Image;
        var orange_img_off = new Image;
        var pink_img_off = new Image;
        var purple_img_off = new Image;
        var red_img_off = new Image;
        var royal_img_off = new Image;
        var spruce_img_off = new Image;
        var turquoise_img_off = new Image;
        var yellow_img_off = new Image;

        beige_img_on.src = "../images/color/beige.jpg"
        black_img_on.src = "../images/color/black.jpg"
        burgundy_img_on.src = "../images/color/burgundy.jpg"
        columbia_img_on.src = "../images/color/columbia_blue.jpg"
        darkgreen_img_on.src = "../images/color/dark_green.jpg"
        flourescent_green_img_on.src = "../images/color/flourescent_green.jpg"
        gray_img_on.src = "../images/color/gray.jpg"
        lilac_img_on.src = "../images/color/lilac.jpg"
        navy_img_on.src = "../images/color/navy.jpg"
        orange_img_on.src = "../images/color/orange.jpg"
        pink_img_on.src = "../images/color/hot_pink.jpg"
        purple_img_on.src = "../images/color/purple.jpg"
        red_img_on.src = "../images/color/red.jpg"
        royal_img_on.src = "../images/color/royal_blue.jpg"
        spruce_img_on.src = "../images/color/spruce.jpg"
        turquoise_img_on.src = "../images/color/turquoise.jpg"
        yellow_img_on.src = "../images/color/yellow.jpg"
        
        beige_img_off.src = "../images/color/royal_blue.jpg"
        black_img_off.src = "../images/color/royal_blue.jpg"
        burgundy_img_off.src = "../images/color/royal_blue.jpg"
        columbia_img_off.src = "../images/color/royal_blue.jpg"
        darkgreen_img_off.src = "../images/color/royal_blue.jpg"
        flourescent_green_img_off.src = "../images/color/royal_blue.jpg"
        gray_img_off.src = "../images/color/royal_blue.jpg"
        lilac_img_off.src = "../images/color/royal_blue.jpg"
        navy_img_off.src = "../images/color/royal_blue.jpg"
        orange_img_off.src = "../images/color/royal_blue.jpg"
        pink_img_off.src = "../images/color/royal_blue.jpg"
        purple_img_off.src = "../images/color/royal_blue.jpg"
        red_img_off.src = "../images/color/royal_blue.jpg"
        royal_img_off.src = "../images/color/royal_blue.jpg"
        spruce_img_off.src = "../images/color/royal_blue.jpg"
        turquoise_img_off.src = "../images/color/royal_blue.jpg"
        yellow_img_off.src = "../images/color/royal_blue.jpg"
        
// here's the rollover function:
			
	function rollover(numberName, onstateSrc){
		document.images[numberName].src = onstateSrc;
	}