function showbigImage(imagepath, width, height) {
	var winProperties = "toolbar=no,location=no,directories=no,status=no,copyhistory=no,width=800,height=600,resizable=yes";

	if(imagepath.substr(imagepath.length-3).toUpperCase()!='PHP')
	{
		w = window.open('','big',winProperties);
		w.document.writeln("<html><head><title>PERUWAGEN - Galr&iacute;a</title></head><body leftmargin=0 rightmargin=0 topmargin=0 bottommargin=0><img src='"+imagepath+"' border=0></body></html>");
	}
	else
		window.open(imagepath,'big',winProperties);
}