function DisplayImage(picURL,picWidth,picHeight,picTitle){
	var aux= new Object();
	aux.x=Math.floor((screen.availWidth-(picWidth || screen.width))/2)-(screen.width-screen.availWidth);
	aux.y=Math.floor((screen.availHeight-(picHeight || screen.height))/2)-(screen.height-screen.availHeight);
	newWindow=window.open("",'newWin','toolbar=no,width='+picWidth+',height='+picHeight+',screenx=' + aux.x+',screeny='+aux.y+',left='+aux.x+',top='+aux.y)
	//newWindow=window.open("",'newWin','toolbar=no,width='+picWidth+',height='+picHeight+',screenx=0,screeny=0,left=0,top=0')
	//newWindow.document.write('<html><head><title>'+picTitle+'<\/title><\/head><body background="'+picURL+'"><\/body><\/html>')
	newWindow.document.write('<html><head><title>'+picTitle+'</title></head><body background="'+picURL+'"></body></html>')
	newWindow.document.close()
	newWindow.resizeBy(picWidth-newWindow.document.body.clientWidth,picHeight-newWindow.document.body.clientHeight)
	newWindow.focus()
}

