﻿// File JScript
<!--

function dimensioni(){

    var sposta = 0;
    var spostaCopy = 0;
    var spostaDiv = 0;
    var xx = 2;
    
    var ah = window.outerHeight;
    var sh = window.screen.height;

    var userAgent = navigator.userAgent.toLowerCase();
    
    if (userAgent.indexOf("seamonkey", 0) > 0){
            spostaCopy = sh - 198;
            spostaDiv = sh - 203;}
    else if (userAgent.indexOf("flock", 0) > 0){
            spostaCopy = sh - 186;
            spostaDiv = sh - 191
            xx = 2;}
    else if (userAgent.indexOf("navigator", 0) > 0){
    
            spostaCopy = sh - 209;
            spostaDiv = sh - 214;
            xx = 2;}
    else if (userAgent.indexOf("firefox", 0) > 0){
            spostaCopy = sh - 216;
            spostaDiv = sh - 221;
            xx = 2;}
    else if (userAgent.indexOf("pera", 0) > 0){
        if (ah >= 667) {
            spostaCopy = ah - 90;
            spostaDiv = ah - 95;
            xx = -12;}
        else{
            spostaCopy = 603;
            spostaDiv = 598;}
            xx = -12;}
    else if (userAgent.indexOf("safari", 0) > 0){
            spostaCopy = sh - 156;
            spostaDiv = sh - 161;
            xx = 5;}
    else if (userAgent.indexOf("msie", 0) > 0){
            spostaCopy = sh - 197;
            spostaDiv = sh - 202;
            xx = -18;}
    else{
        spostaCopy = 520;
        spostaDiv = 508;
        xx = 0;}
        
   if (spostaCopy < 455){
        spostaCopy = 455;
        spostaDiv = 450;
    }
        
       // spostaCopy = 603;
       //spostaDiv = 598;
	
	var ScrWidth = window.document.body.scrollWidth;
	// var ScrHeight = window.document.body.scrollHeight;
			
    if(ScrWidth-xx-800>0){
		sposta = Math.round((ScrWidth-xx-800)/2);}
	else{
	    sposta = 1;}
			
	// document.getElementById('corpoMain').style.top = 0;
	document.getElementById('corpoMain').style.left = sposta;
	document.getElementById('corpoCopy').style.left = sposta;
	
	// document.getElementById('corpoMain').style.height = spostaDiv;
	// document.getElementById('corpoCopy').style.top = spostaCopy;
		
	setTimeout('dimensioni()',500)
		
} 	

function apriPrivacy(){
 window.open("privacy.aspx","popup","width=820px, height=620px, left=100px, top=10px, resizable=no, scrollbars=yes,");
  }
 
 function apriRegola(){
 window.open("regolamento.aspx","popup2","width=820px, height=620px, left=100px, top=10px, resizable=no, scrollbars=yes,");
  }
  
  function apriBrowser(){
 window.open("browser.aspx","popup4","width=820px, height=620px, left=100px, top=10px, resizable=no, scrollbars=yes,");
  }
 
 function apriMobile(){
 window.open("mobilphone.aspx","popup5","width=820px, height=620px, left=100px, top=10px, resizable=no, scrollbars=yes,");
  }
  
  //-->	

