function checkFrameColor(whichFrame){

	var frameSelection = document.getElementById("frame_select").value;
	
	if(whichFrame == 'standard'){
		
		if(frameSelection == 'walnut'){
			
			window.location = "http://kuranda.com/all-purpose-dog-beds/standard-walnut-dog-bed";
			
		}
		
	}else if(whichFrame == 'walnut'){
		
		if(frameSelection == 'standard'){
			
			window.location = "http://kuranda.com/all-purpose-dog-beds/standard-dog-bed";
			
		}			
		
	}
	
}