
  function checkres()
  {
	  //Impostare questi per ulteriori riutilizzi
	  
	  lowres = 'http://www.dedwebdesign.it/prova/index.html';   //Posizione dell'index del sito a BASSA risoluzione 800x600
	  highres = 'http://www.dedwebdesign.it/prova/1024/index.html';  //Posizione dell'index del sito 1024x768
 	  
	  wid = screen.width;
	  hei = screen.height;
	  
	  if (wid=='800' || hei=='600')
	  {
	   document.location = lowres;
      	  }
	  
	  if (wid=='1024' || hei=='768')
	  {
	   document.location = highres;
          }

  }
  function checkres2()
  {
	  //Impostare questi per ulteriori riutilizzi
	  
	  lowres = 'http://www.italcaravan.it/eng/eng-index0.html';   //Posizione dell'index del sito a BASSA risoluzione 800x600
	  highres = 'http://www.italcaravan.it/1024/eng/eng-index0.html';  //Posizione dell'index del sito 1024x768
 	  
	  wid = screen.width;
	  hei = screen.height;
	  
	  if (wid=='800' || hei=='600')
	  {
	   document.location = lowres;
      	  }
	  
	  if (wid=='1024' || hei=='768')
	  {
	   document.location = highres;
          }

  }
  


