// JavaScript Document

 function autoPopup(n,d) {

   // var theImages = new Array()
   img_pop = "pop"+d;
   var h = document.getElementById(img_pop).getAttribute('height');
   var w = document.getElementById(img_pop).getAttribute('width');
   var img = document.getElementById(img_pop).getAttribute('src');
   var alt = document.getElementById(n).getAttribute('alt');
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);
   hw = h+15;
   var stili = "top="+t+", left="+l+", width="+w+", height="+hw+", status=no, menubar=no, toolbar=no scrollbar=no";
   var testo = window.open("", "", stili);
      testo.document.write("<html>\n");
      testo.document.write(" <head>\n");
      testo.document.write(" <title>MGMotion.com</title>\n");
      testo.document.write(" <meta http-equiv=\"Content-Type\" content=\"text/html\"; charset=iso-8859-1>\n");
	  testo.document.write("<link href=../graphic/style.css rel=stylesheet type=text/css>\n");
      testo.document.write(" </head>\n");
      testo.document.write("<body bgcolor=\"#333333\" leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>\n");
      testo.document.write("<table border=0 cellspacing=0 cellpadding=0>\n");
 	  testo.document.write("<tr>\n");
      testo.document.write("<td><img src="+img+" width="+w+" height="+h+"></td>\n");
  	  testo.document.write("</tr>\n");
      testo.document.write("<tr>\n");
      testo.document.write("<td class=foot>");
	  testo.document.write(alt);
	  testo.document.write("</td>\n");
      testo.document.write("</tr>\n");
      testo.document.write("</table>\n");
      testo.document.write("</body>\n");
      testo.document.write("</html>");
 }



