/****************************************

	Werewolf Web Design - Javascript Archive
        Siteopen.js
	Includes - opensite

<!-- Function siteopen serves to load a web page in the top left corner of the screen in at least 640 x 480 mode -->

******/

function opensite (field) 
  {
  var w=640;
  var h=480;

  if (window.screen) {
     w = parseInt(window.screen.availWidth * 0.80);
     h = parseInt(window.screen.availHeight * 0.80);
     }

  (w < 640) ? w = 640 : w = w;
  (h < 480) ? h = 480 : h = h;

  window.open(field,'','width='+w+',height='+h+'screenX=0,screenY=0,top=0,left=0,scrollbars=yes,toolbar=yes');
}




