//----------------------------------------------------------------------------------
//  Javascript relating to CharityTrak screens
//----------------------------------------------------------------------------------

	object = document.getElementById("CTLink");
	if (object) object.style.display = "Block";


function OpenWindow(image, width, height) 
{
  url      =  "http://www.fivegulf.com/" + image ;
  scrTop   =(screen.availHeight / 2) - (height/ 2) ;
  scrLeft  =(screen.availWidth / 2) - (width / 2) ;
  Attribs  = "width=" + width + 
             ",height=" + height + 
             ",top=" + scrTop + 
             ",left=" + scrLeft  ;
  popupWin = window.open(url, 'remote', Attribs); 
}  

function setDisplay(objectID,state) 
{
	var navname = objectID;
	object = document.getElementById(navname);
	if (object) object.style.display = state;
}
