function DynaWin(url, h, w, l, t) {
 if( w < 300) {popw = 300} else {if (w  > screen.width -90 )
 { popw =  screen.width -45 } else { popw = + w + 45 };}
if (h > screen.height -205)
 { poph =  screen.height -110} else { poph = + h +95 };
 disp = window.open("","pop","height=" + poph + ",width=" + popw + ",scrollbars=yes,resizable =yes, left=" + l + ",top=" + t + "");
content = '<HTML>';
content += '<TITLE>Full Picture</TITLE>';
content += '</HEAD>';
content += '<BODY background="http://www.theargentinaexperience.com/img/motivo_claro.jpg" link="#660000" vlink="#660000" alink="#660000" onBlur="self.close()">';
content += '<H3 ALIGN="CENTER"><A HREF="#" onClick="self.close()">Click Here or Outside of Window to Close this Window</A></H3>';
content += '<P ALIGN="CENTER"><img src=http://www.theargentinaexperience.com/ejpics/' + url + ' height="' + h + '" width="' + w + '"  style="border: 2px solid #29563C"  border=2></P>';
content += '</BODY></HTML>';
disp.document.write(content);
disp.document.close();
}
