Ciao amici,

ho scaricato un plugin jquery che fa aprire un box contenente un form in modalità pop up overlay quando si clicca in un semplice link presente nella pagina index del plugin stesso.
Il sistema funziona correttamente.
Ora il problema sta nel fatto che io voglio far aprire questo box form in automatico al caricamento della pagina index e non al click sul link presente nella medesima pagina.
Quindi volevo chiedermi se mi aiutate a modificare lo scripr affinchè avvenga quanto sopra.
Immagino sia una cosa abbastanza semplice ed immediata ma non essendo io un programmatore diventa un impresa ardua.

Di seguito vi copio/incollo il codice html della pagina index del plugin così che guardandolo forse mi potete suggerire cosa e come devo modificare per ottenere l'effetto di cui vi parlavo sopra.

Garzie in anticipo per tutti gli aiuti che potrete darmi.


codice:
<!DOCTYPE html> <html> <head> <title> SimpleModal Contact Form </title> <meta name='author' content='Eric Martin' /> <meta name='copyright' content='2013 - Eric Martin' />   <link type='text/css' href='css/demo.css' rel='stylesheet' media='screen' />   <link type='text/css' href='css/contact.css' rel='stylesheet' media='screen' />   </head> <body onLoad="openPopUp();"> <div id='container'> 	<div id='logo'> 		<h1>Simple<span>Modal</span></h1> 		<span class='title'>A Modal Dialog Framework Plugin for jQuery</span> 	</div> 	<div id='content'> 		<div id='contact-form'> 			<h3>Contact Form</h3> 			

A contact form built on SimpleModal. Demonstrates the use of the <code>onOpen</code>, <code>onShow</code> and <code>onClose</code> callbacks, as well as the use of Ajax with SimpleModal.</p> 			

To use: open <code>data/contact.php</code> and modify the <code>$to</code> and <code>$subject</code> values. To enable/disable information about the user, configure the <code>$extra</code> array.</p> 			

Note: This demo must be run from a web server with PHP enabled.</p> 			<input type='button' name='contact' value='Demo' class='contact demo'/> or Demo 		</div> 		 		<div style='display:none'> 			[img]img/contact/loading.gif[/img] 		</div> 	</div> 	<div id='footer'> 		&copy; 2013 Eric Martin
 		SimpleModal on GitHub
 		@ericmmartin | @simplemodal 	</div> </div>  <script type='text/javascript' src='js/jquery.js'></script> <script type='text/javascript' src='js/jquery.simplemodal.js'></script> <script type='text/javascript' src='js/contact.js'></script>  <SCRIPT language="JavaScript">  function openPopUp() { window.open('js/contact.js'); }  </SCRIPT> </body> </html>