/** 
 *  Main script for tmmjmcgarry 
 *
 *  Author: Micahel James McGarry
 */

function BrowserInfo() 
{
	var ua = navigator.appName.toLowerCase();
	this.ie = (ua=="microsoft internet explorer");
	this.nn = (ua=="netscape");
   this.version = navigator.appVersion;
   this.ok = ( this.ie || this.nn ) && ( this.version >= 4 );
                                
   // screen resolution
	this.screenHeight = screen.height;
	this.screenWidth = screen.width;
}

function LoadSlideShow(name)
{
   var script = "./slideshows/" + name.toLowerCase() + ".html";
   var height = document.all ? 490 : 495;
   var width = document.all ? 726 : 836; 
   window.open(script,name,config="width="+width+",height="+height)
}    

function LoadSlideShowPhp(name)
{
   var script = "./slideshows/" + name.toLowerCase() + ".php";
   var height = document.all ? 490 : 495;
   var width = document.all ? 726 : 836; 
   window.open(script,name,config="width="+width+",height="+height)
}    

function OpenPhotoAlbums()
{
   var url = "http://community.webshots.com/user/mjmcgarry";
   var name = "McGarryPhotoAlbums";
   window.open(url,name);
}


