function showPic(picURL,picTitle,picWidth,picHeight){
	newWindow=window.open(picURL,'newWin','toolbar=no,scrollbars=no,menubar=no,resizable=no,statusbar=no,width='+picWidth+',height='+picHeight)
	newWindow.document.write('<html><title>'+picTitle+'<\/title><head><\/head><body topmargin="0" leftmargin="0"><img src="'+picURL+'"><\/body><\/html>')
	newWindow.focus()
}