Ciao a tutti! premetto che non so nulla di js e sto cercando di adattare quello che trovo alle mie necessità... Ho una mappa regionale con aree a ciascuna delle quali corrisponde un link diverso che mi apre una finestra contenente un testo di lunghezza variabile. Con questo codice, la finestra si apre nel punto che voglio io, torna in primo piano e si aggiorna con il nuovo testo se clicco su un'area diversa, ma non ha le dimensioni che voglio io! in partic ha sempre le dimens della prima finestra che si apre (io vorrei che si adeguasse alla lungh e largh del testo che a volte è in tab a tre colonne). C'è un'anima buona che può darmi un suggerim? e magari anche spiegarmi la sintassi di property (ho spulciato le varie guide ma non capisco molto ).
GRAZIE

codice:
<head>
<meta http-equiv="Content-Language" content="it">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Piemonte</title>
<style type="text/css">
	A:link, A:visited { text-decoration: none } 
	A:hover { text-decoration: underline }
	body { font-family: Arial, Helvetica, "sans serif" }
</style>
<script type="text/javascript">
function pop(url,w,h){ 
l=350; 
t=100; 
property="resizable=no,status=no,scrollbars=no,width,height,top="+t+",left="+l; 
aa=window.open(url,'newWin',property); 
aa.focus();
} 
</script>
</head>

<body>

<div align="center">
  <center>
  <table border="0" cellpadding="0" cellspacing="0" width="100%">
    <tr>
      <td width="100%" colspan="2">
      	<p align="center"><font size="5">PIEMONTE</font></p>
      	

</td>
    </tr>
    <tr>
      <td width="100%" colspan="2">
        <p align="center"><font size="2">(click on the type-locality, either on the map or on the list, and go to the related mineral)
</font></p></td>
    </tr>
    <tr>
      <td width="50%" align="center">
        [img]piemonte.gif[/img]
		 <map id="piemonte" name="piemonte">
		 
		 <area shape="rect" alt="click to see all the minerals in this type-locality" coords="205,6,248,18" 
onclick="pop('baceno.htm','newWin',150,130)" href="#">
		<area shape="rect" alt="click to see all the minerals in this type-locality" coords="215,22,278,37"
onClick="pop('vigezzo.htm','newWin',150,100)" href="#">
		<area shape="rect" alt="click to see all the minerals in this type-locality" coords="216,89,265,104"
onClick="pop('baveno.htm','newWin','scrollbars=no,status=no,resizable=no,top=100,left=350,width=150,height=130')" href="#">
			<area shape="rect" alt="click to see all the minerals in this type-locality" coords="132,79,185,93"
onClick="pop('candoglia.htm','newWin',150,60)" href="#">
.......
.......
</body>