

function launch(windowName) { 

	gallery=window.open(windowName,"popup",'width=700,height=630,left=50,top=20,status,scrollbars=1')

	window.gallery.focus()

}







function getTheImageName(){  

    theImage = location.search;

    theImage = theImage.substring(theImage.indexOf("=")+1);// Get rid of 'img='

	document.write("<img src= " + theImage + ">");

}

