// JavaScript Document
function enWhite(theCell){
	//document.getElementById(theCell).style.backgroundColor = '#FFFFFF';
	theCell.style.backgroundColor = '#F1F0EE';
}

function enGrey(theCell){
	theCell.style.backgroundColor = '';
}
function openBrWin(theWin){
	
	var NewWin = window.open(theWin, 'cat', 'height=720,width=760,scrollbars=yes');
	NewWin.focus();
}

function SI(theIMG){
	document.getElementById('CG').src = 'images/'+theIMG;
}

function toggleStockists(){
	if (stVis){
		document.getElementById('stockists').style.display = 'none';
		stVis = false;
	}else{
		document.getElementById('stockists').style.display = 'block';
		stVis = true;
	}
}
function toggleDiv(divid){
    document.getElementById('st1').style.display = 'none';
    document.getElementById('st2').style.display = 'none';
    document.getElementById('st3').style.display = 'none';
    document.getElementById('st4').style.display = 'none';
    document.getElementById(divid).style.display = 'block';
}
function cg(theIMG){
	r = document.getElementById('cgImage');//.img.src = 'images/'+theIMG;
	r.innerHTML = '<img src="images/'+theIMG+'">';
}
