function popimage(imagesrc,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
var look='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
popwin=window.open("","",look)
popwin.document.open()
popwin.document.write('<title>::: aKamoldes - Janela de Imagem :::</title><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><img src="'+imagesrc+'"></body>')
popwin.document.close()
}
