var imagePath;
function openImage(prefix, image, width, height, lang) {
	imagePath = image;
	window.open(prefix + 'popup_' + lang + '.htm', '', 'width=' + width + ',height=' + height + '');
}
function loadImage(){
	document.getElementById("img").src = opener.imagePath;
} 
function show(){	
	document.getElementById("txt").style.display = "none";
	document.getElementById("img").style.display = "block";
}



