function AmpliacioImatge(strImg){
	
      	myWindow = window.open("", "Preview","Height=580, Width=735 ,left=10, top=10");


        myWindow.document.open();

        myWindow.document.write("<HTML><HEAD>");

        myWindow.document.write("<TITLE>ESTACIO METEOROLOGICA DE L'ESTARTIT</TITLE>");

        myWindow.document.write("</HEAD><BODY BGCOLOR=990000 TEXT=000000><CENTER>");

        

        myWindow.document.write("<IMG SRC='" + strImg + "'width=700 >");


        myWindow.document.write("<FORM><INPUT TYPE='button' VALUE='TANCAR' " +

       "onClick='window.close()'></FORM>");

        myWindow.document.write("</CENTER>");

        myWindow.document.write("</BODY></HTML>");

        myWindow.document.close();

    }