var divtxt = "";
function whiteBox(imgno, width, height)
{

	divtxt = "<div style='float:right; display: block; clear: both;'><img title='Close Button' alt='Close Button' src='http://site.modaqueen.com/default/images/close-button.gif' onclick='document.getElementById(\"popup\").style.display=\"none\"; document.getElementById(\"fade\").style.visibility=\"hidden\";' align='right'><Br><br>";
	divtxt += "<div id='imgdiv'>";
	divtxt += document.getElementById("lightimage" + imgno).innerHTML;
	divtxt += "</div>";
	divtxt += "</div>";

	

}




document.write("<div id='fade' class='black_overlay'></div>");


function lightBox(url, val, imgwidth, imgheight)
{
	whiteBox(val, imgwidth, imgheight);
	document.getElementById("fade").style.visibility="visible";
    itemimg = new Image();
    itemimg.src = url;
	
    
	width = screen.width;
	width = (width - 500)/2;
	height = screen.height;
	height = (height - 659)/2;
	lightDiv = document.getElementById("popup");
	lightDiv.style.display = "block";
		lightDiv.innerHTML  = divtxt;

	
	itemwidth = itemimg.width;
	itemheight = itemimg.height;

	lightDiv.style.width =  (imgwidth + 10) + "px";
	lightDiv.style.height = (imgheight + 50) + "px";
	

	lightDiv.style.left = Number(width) + "px";
	lightDiv.style.top = Number(height) + "px";
	

    
}
