// JavaScript Document
function toggle(imgUrl) {
	var ele = document.getElementById("toggleText");
	var text = document.getElementById("displayText");
	
	if(ele.style.display == "block") {
    		ele.style.display = "none";		
  	}
	else {
		window.scrollTo(0,0);
		var img=document.getElementById("zoomedImg");
		img.src=imgUrl;
		img.style.width=600+"px";
		img.style.height=371+"px";
		ele.style.display = "block";
		
		var ele1 = document.getElementById("message");
		var scWidth=screen.width/2;
		scWidth=scWidth-300;
		var scHeight=screen.height/2;
		
		ele1.style.left=scWidth+"px";
		ele1.style.top=scHeight/2-75+"px";
//	document.write('<div z-index: 150px; position: absolute; left:'+scWidth+'top:'+scHeight+' border: 2px dashed; width: 400px; height: 350px; background: #FFFFFF"> </div>');
	}
}
