/*
function imageWin(img){	
	var iWidth = document.img.width;
	var iHeight = document.img.height;
	newwin = window.open("popup.html", "", "top=60,left=200);
	if ( !newwin.opener ) newwin.opener = self;
	    newwin.opener.document.bgColor = "000000";
	    with ( newwin.document ) {
        open();
		write("<body margin=0>");
		write("<img src=" + img + " border=o>");
		write("</body>");
		close();
	}
}
*/
function PopupPic(sPicURL) {
	window.open( "popup.html?"+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200");
}
