// JavaScript Document
preload_image_object = new Image();


function zoom(img){
preload_image_object.src="creation/"+img+".jpg";
width=preload_image_object.width;

		var fond=document.createElement("div");
		fond.className="cache";
		fond.id="fond";
		fond.style.top='0px';
		fond.style.left='0px';
		fond.style.width=screen.width+'px';
		fond.style.height=screen.height+'px';
		fond.onclick=function(){
			exit_popup();
			}
		document.body.appendChild(fond);
		
		var popup=document.createElement("div");
		popup.className="popup_img";
		popup.id="popup";
		popup.onclick=function(){
			exit_popup();
			}
		
		
		popup.style.top="10px";
		popup.style.left="10px";
		popup.style.width=screen.width-100+"px";
		popup.style.height=screen.height-250+"px";
		
		
		/*
		popup.style.top=(screen.height/2)-preload_image_object.height+"px";
		popup.style.left=(screen.width/2)-(width/2)+"px";
		popup.style.width=preload_image_object.width+"px";
		popup.style.height=preload_image_object.height+"px";
		
		*/
		document.body.appendChild(popup);
		document.getElementById('popup').innerHTML="<img height='"+(screen.height-250)+"px' src='"+preload_image_object.src+"' />";


}

function exit_popup(){
	document.getElementById('popup').innerHTML="";
	document.body.removeChild(document.getElementById('popup'));
	document.body.removeChild(document.getElementById('fond'));
}