function show_picture(id,source) { 

	if (source=="1"){ 
		if (document.layers) {
			document.layers[''+id+''].visibility = "show"; 
		}
		else if (document.all) {
			document.all[''+id+''].style.visibility = "visible"; 
		}
		else if (document.getElementById) {
			document.getElementById(''+id+'').style.visibility = "visible";
		}	
	} 
	else 
	if (source=="0"){ 
		if (document.layers) document.layers[''+id+''].visibility = "hide" 
		else if (document.all) document.all[''+id+''].style.visibility = "hidden" 
		else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "hidden" 
	} 
} 

function display_eqa_seal(){
	var url='https://myeqa.bceqa.ca/apply/VerifyLogo.jsp?instName=Canadian Institute of Natural Health and Healing&instAddress=1772 Baron Road, Kelowna, BC, V1X 7G9, Canada&validDate=Oct 25, 2011 to Apr 30, 2012&instStatus=Designated';    
    window.open(url, '_blank', 'location=no, resizable=no, width=500, height=320');
}


