popupImgStyle = "popup";
function doAutomaticPopup(){
	cEl = document.getElementsByTagName("a");
	for(i = 0; i < cEl.length; i++){
		if(cEl[i].className == "popup"){
			cEl[i].rel = "gb_image[]";   
			cEl[i].onclick = openGbDyn;
		 }
	}
}
function openGbDyn(){
		try{
			var i = this.getElementsByTagName("img");
			this.title = i[0].alt;
		}catch(e){}		
		checkComponent("popup");
		this.onclick()
		return false;
}
