function showImage(image) {
    	var win1;
    	win1 = window.open('', '', "scrollbars:yes, toolbar=no, statusbar=no, resizable=yno, scrollbars=yes");
    	win1.document.open();
    	win1.document.writeln("<html><head>");
    	win1.document.writeln("<title></title>");
    	win1.document.writeln("<style>body { margin:0; padding:0} a, img{border:0 } </style></head><body>");
      win1.document.writeln("<a style=\"display:block\" href=\"javascript:window.close()\"><img style=\"display:block\" class=\"shot\" src=\""+image+"\"></a>");
    	win1.document.writeln("</body></html>");
    }

function goodInputs() {
        df = document.forms;
        function myonfocus(el,elval) {
                el.onblur  = function fun() {if (el.value == "") el.value = elval};
                el.onfocus = function fun() {if (el.value == elval) el.value=""};
        }
        for (i=0; i<=df.length-1; i++) {
                dfe=df[i].elements;
                for (j=0; j<=dfe.length-1; j++)
                        if (dfe[j].type == 'text') myonfocus(dfe[j], dfe[j].value);
        }
}
window.onload = function ()
{
	goodInputs();
}