<!--

var webcommWindow = null;
function doWebCommPopup(url)
{
	if (!webcommWindow || webcommWindow.closed)
	{
		webcommWindow = window.open(url,"fundWindow","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=500,height=400");
	}
	else
	{
		webcommWindow.location = url;
		webcommWindow.focus();
	}
}

var fundWindow = null;
function doFundPopup(url)
{
	if (!fundWindow || fundWindow.closed)
	{
		fundWindow = window.open(url,"fundWindow","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=400,height=400");
	}
	else
	{
		fundWindow.location = url;
		fundWindow.focus();
	}
}

var summaryWindow = null;
function doSummaryPopup(url)
{
	if (!tourWindow || tourWindow.closed)
	{
		tourWindow = window.open(url,"summaryWindow","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=500,height=300");
	}
	else
	{
		tourWindow.location = url;
		tourWindow.focus();
	}
}

var tourWindow = null;
function doTourPopup(url)
{
	if (!tourWindow || tourWindow.closed)
	{
		tourWindow = window.open(url,"tourWindow","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=500,height=300");
	}
	else
	{
		tourWindow.location = url;
		tourWindow.focus();
	}
}


var contactWindow = null;
//initialize variable to check for ie 4.0x
var isIE4 = (navigator.appVersion.indexOf("MSIE 4.0") != -1)?true:false;
//initialize variable to check for Mac
var isMac = (navigator.platform == "MacPPC")?true:false;
var isNS6 = (navigator.userAgent.indexOf("Mozilla") != -1)?true:false;
//initialize the new window variable with a null value
var newwin = null;
//counter for number of windows opened
wincount = 0;
//pass the requested URL to the window opener function

function doContactPopup(url)
{
	features = "toolbar=no,";
	features += "location=no,";
	features += "directories=no,";
	features += "status=no,";
	features += "menubar=no,";
	features += "scrollbars=yes,";
	features += "resizable=no,";
	features += "width=570,";
	features += "height=450";
	if (isMac && isIE4)
	{
		contactWindow = window.open(url,"newwindow",features); 
	}
	
	else
	{
		//if the window named newwin does not exist or is closed...
	    if (!contactWindow || contactWindow.closed) 
		{
		 	//open a new window named contactWindow
	     	contactWindow = window.open(url,"newwindow",features); 
		}
		// or if the window named contactWindow is already open...
		else
	    {
			if (isIE4)
			{
				contactWindow.close();
				newwindow = "newwindow" + wincount;
				contactWindow = window.open(url,newwindow,features); 
				wincount++;
			}
			else
			{
				//load the new url into the child window
				contactWindow.location.href = url;
				//bring the window to the front of the screen
				contactWindow.focus();
			}
		}
	}
} 

//-->  
