function screenFull() {
	if (document.all) {
		// misuro lo schermo
		sW=screen.width;
		sH=screen.height;

		// porto la finestra a 0,0 e misuro bordi
		window.moveTo(0,0);
		gL=window.screenLeft+2;	
		gT=window.screenTop+2; 

		// altre cose da eliminare...
		gR=22;	// scrollbar a destra
		gB=49;	// scrollbar sotto e status

		// sorpresa!
		window.moveTo(-gL,-gT);
		window.resizeTo(sW+gL+gR,sH+gT+gB);
	} else {
		window.moveTo(0, 0);
		//window.resizeTo(screen.width, screen.height)
	}
}

function getUrlVars()
{
    if (window.location.href.indexOf('#') > -1) {
		var contents = [], hash;
    	var hashes = window.location.href.slice(window.location.href.indexOf("#") + 1).split('&');
	
    	for(var i = 0; i < hashes.length; i++)
    	{
    	    hash = hashes[i].split('=');
    	    contents.push(hash[0]);
    	    contents[hash[0]] = hash[1];
    	}
		return contents;
	} else {
		return "no";
	}
}