// JavaScript Document

// HIDE DIVS - COMBO - RESET IMAGE DIV
	
function hideCombo(id1,id2) {
	document.getElementById(id1).style.display = "none";
	document.getElementById(id2).style.display = "none";	
	// clear photo
	document.getElementById('img').src = "/gfx/spacer.gif";
	}
	
// SHOW DIVS - COMBO
	
function showCombo(id1,id2) {
	document.getElementById(id1).style.display = "block";
	document.getElementById(id2).style.display = "block";
	}
	
	// LOAD PHOTO
	
function getImage(img){
    document.getElementById('img').src = img;
}