function Map() 
{

 	locationJump = "location-and-map.cfm";
	windowCaption = "Locations And Map";
  	windowWidth = 550;
  	windowHeight = 500;
  	if (screen.width == 800)
	{
  		windowWidth = 650;
  		windowHeight = 350;
  	}
  	if (screen.width == 1024)
	{
  		windowWidth = 900;
  		windowHeight = 600;
  	} 
 	GB_showCenter(windowCaption,locationJump,windowHeight,windowWidth);
}
 

