/*	@author Jared Stanley	http://www.jaredstanley.com	jared[-at-]jaredstanley.com*/function resize() {	   var w_newWidth;	   var w_newHeight;	   //	   var w_maxWidth=1300;	   var w_maxHeight=790;	   	   var target = document.getElementById("site");		   if (navigator.appName.indexOf("Microsoft") != -1) {		   w_newWidth=document.body.clientWidth;		   w_newHeight=document.body.clientHeight;	   }else{		   w_newWidth=window.innerWidth;		   w_newHeight=window.innerHeight;	   }				   if (w_newWidth>w_maxWidth){		 //  target.width = "100%";		   if (w_newHeight>w_maxHeight){			   target.height = w_newHeight;		   } else {			   target.height = w_maxHeight;		   }	   } else {		   target.width = w_maxWidth;		   if (w_newHeight>w_maxHeight){			   target.height = w_newHeight;		   } else {			   target.height = w_maxHeight;		   }	   }	}	function startresize(){		resize();		resize();	}	// 