
/*
Pop up image 
*/

function popimage(imagesrc){
popwin=window.open("",""," directories=no, status=no, width=700, height=700, scrollbars=yes, copyhistory=yes,resizable=yes")
popwin.document.open()
popwin.document.write('<title>'+imagesrc+'</title><body><img src="'+imagesrc+'"></body>')
/*
iWidth = popwin.document.images[0].width - 670;
iHeight = popwin.document.images[0].height - 670;
popwin.resizeBy(iWidth, iHeight)
*/
popwin.document.close()
}

