
function showBig(imageName, name)
{
	var bigImageWindow = window.open("", "subWindow", "height=630,width=620");
    
    bigImageWindow.document.write("<html><head><title>" + name + "</title></head><body bgColor='#9999CC'><img border='0' src='" + imageName + "'/></body></html>");
}
