// JavaScript Document

var myHeight = 0;
var myWidth = 0;
if (typeof(window.innerHeight) == 'number') {
	// Non-IE
	myHeight = window.innerHeight;
	myWidth = window.innerWidth;
} else if (document.documentElement && document.documentElement.clientHeight) {
	// IE
	myHeight = document.documentElement.clientHeight;
	myWidth = document.documentElement.clientWidth;
}
myHeight = myHeight - 111;
myWidth = myWidth;
document.write('<link rel="stylesheet" ',
'type="text/css" media="screen" href="_lib/styles-css.php?height=', myHeight, '&amp;width=', myWidth, '" />');

function refresh()
{
	window.location.reload()
}

function CaricaFoto(img){
	foto1= new Image();
	foto1.src=(img);
	Controlla(img);
}

function Controlla(img){
	if((foto1.width!=0)&&(foto1.height!=0)){
		viewFoto(img);
	}
	else{
		funzione="Controlla('"+img+"')";
		intervallo=setTimeout(funzione,20);
	}
}

function viewFoto(img){
	largh=foto1.width+20;
	altez=foto1.height+20;
	stringa="width="+largh+",height="+altez;
	finestra=window.open(img,"",stringa);
}

function reload(form){
	var val=form.cat.options[form.cat.options.selectedIndex].value;
	self.location='adrpackages.php?cat=' + val ;
}


