<br />
<b>Warning</b>:  fopen(../public/contatore.txt) [<a href='function.fopen'>function.fopen</a>]: failed to open stream: No such file or directory in <b>/web/htdocs/www.bandabagaj.it/home/js/ContaVisite.php</b> on line <b>19</b><br />
<br />
<b>Warning</b>:  fopen(../public/contatore.txt) [<a href='function.fopen'>function.fopen</a>]: failed to open stream: No such file or directory in <b>/web/htdocs/www.bandabagaj.it/home/js/ContaVisite.php</b> on line <b>21</b><br />
<br />
<b>Warning</b>:  fseek(): supplied argument is not a valid stream resource in <b>/web/htdocs/www.bandabagaj.it/home/js/ContaVisite.php</b> on line <b>24</b><br />
<br />
<b>Warning</b>:  flock() expects parameter 1 to be resource, boolean given in <b>/web/htdocs/www.bandabagaj.it/home/js/ContaVisite.php</b> on line <b>26</b><br />
<br />
<b>Warning</b>:  fwrite(): supplied argument is not a valid stream resource in <b>/web/htdocs/www.bandabagaj.it/home/js/ContaVisite.php</b> on line <b>27</b><br />
NON RIESCO A SCRIVERE SU FILE ../public/contatore.txt<br />
<b>Warning</b>:  flock() expects parameter 1 to be resource, boolean given in <b>/web/htdocs/www.bandabagaj.it/home/js/ContaVisite.php</b> on line <b>30</b><br />
<br />
<b>Warning</b>:  fclose(): supplied argument is not a valid stream resource in <b>/web/htdocs/www.bandabagaj.it/home/js/ContaVisite.php</b> on line <b>31</b><br />
<br />
<b>Warning</b>:  fopen(../public/contatore.txt) [<a href='function.fopen'>function.fopen</a>]: failed to open stream: No such file or directory in <b>/web/htdocs/www.bandabagaj.it/home/js/ContaVisite.php</b> on line <b>19</b><br />
<br />
<b>Warning</b>:  fopen(../public/contatore.txt) [<a href='function.fopen'>function.fopen</a>]: failed to open stream: No such file or directory in <b>/web/htdocs/www.bandabagaj.it/home/js/ContaVisite.php</b> on line <b>21</b><br />
<br />
<b>Warning</b>:  fseek(): supplied argument is not a valid stream resource in <b>/web/htdocs/www.bandabagaj.it/home/js/ContaVisite.php</b> on line <b>24</b><br />
<br />
<b>Warning</b>:  flock() expects parameter 1 to be resource, boolean given in <b>/web/htdocs/www.bandabagaj.it/home/js/ContaVisite.php</b> on line <b>26</b><br />
<br />
<b>Warning</b>:  fwrite(): supplied argument is not a valid stream resource in <b>/web/htdocs/www.bandabagaj.it/home/js/ContaVisite.php</b> on line <b>27</b><br />
NON RIESCO A SCRIVERE SU FILE ../public/contatore.txt<br />
<b>Warning</b>:  flock() expects parameter 1 to be resource, boolean given in <b>/web/htdocs/www.bandabagaj.it/home/js/ContaVisite.php</b> on line <b>30</b><br />
<br />
<b>Warning</b>:  fclose(): supplied argument is not a valid stream resource in <b>/web/htdocs/www.bandabagaj.it/home/js/ContaVisite.php</b> on line <b>31</b><br />

id = "homepage";	// l'id del filmato
url = "homepage.swf?contatore=1"; // il percorso del filmato swf
width = 1024;	// larghezza del filmato
height = 608;	// altezza del filmato


function insertObject(url, width, height, id) {
	if(document.all) {	// per explorer
		document.write( 
			"<object id=\""+id+"\" type=\"application/x-shockwave-flash\" width=\"" + width + "\" height=\"" + height + "\" data=\"" + url + "\">" +
			"	<param name=\"movie\" value=\"" + url + "\" />" +
			"</object>"
		);
	}
	else {	// tutti quelli normali
		document.write( 
			"<embed id=\""+id+"\" src=\""+url+"\" width=\"" + width + "\" height=\"" + height + "\" quality=\"high\">"
		);
	
		var object = document.getElementById(id);
		var mezWidth = width % 2 == 0 ? width/2 : (width-1)/2;
		var mezHeight = height % 2 == 0 ? height/2 : (height-1)/2;
		object.setAttribute("style", "position:absolute;width:"+width+"px;height:"+height+"px;margin-left:-"+mezWidth+"px;margin-top:-"+mezHeight+"px;left:50%;top:50%");

	}
}
insertObject(url, width, height, id);

