function weblinking (gotoName, gotoURL, is_B1_branded) {
		gotoName = escape(gotoName);
		gotoURL = escape(gotoURL);
		if (is_B1_branded == 0) {
			toolTipURL = '/xcards4/common/weblinking/FUSAweblinking.html';
		}
		else {
			toolTipURL = '/xcards4/common/weblinking/weblinking.html';
		}
		var loadURL = toolTipURL + '?gotoName=' + gotoName + '&gotoURL=' + gotoURL;
		var webLinkWin = window.open(loadURL,"view",'width=480,height=295,resizable=no,scrollbars=yes,menubar=no');
		webLinkWin.focus();
}

function displayWindow(url, width, height) {
		var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=yes,scrollbars=yes,menubar=yes' );
		// Win.focus();
}
function displayShortWindow(url) {
	var Win = window.open(url,"displayShortWindow",'resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no');
}
	
function MM_openBrWindow(theURL,winName,features) { //v2.0
 		window.open(theURL,winName,features);
}


/* Begin IE Mac Check Script */
var userAgent = navigator.userAgent;
var mac = (userAgent.indexOf('Mac') != -1);
var ie = (userAgent.indexOf('MSIE') != -1);
		
if (mac && ie)
	alert("This page uses Web Standards that Internet Explorer 5 for the Macintosh does not support.\r\rMicrosoft officially dropped development of Internet Explorer for Mac in June 2003.\r\rPlease use Safari or FireFox to browse this site as some elements may not render correctly.");
/* End IE Mac Check Script */


function expandCollapse(ind) 
{	
	s = document.getElementById("info" + ind);
	if (s.style.display == 'none') 
	{
		s.style.display = 'block';
	} 
	else if (s.style.display == 'block') 
	{
		s.style.display = 'none';
	}
}
		
function getBuild(ind) 
{
	s = document.getElementById("info" + ind);	
}	

function expandCollapse(ind) 
{	
	s = document.getElementById("info" + ind);
	b = document.getElementById("bullet_" + ind);
	c = document.getElementById("corners_"+ ind);
	
	if (s.style.display == 'none') 
	{
		s.style.display = 'block';
		b.className = "bullet_white";
		c.className = 'corners_show';
	} 
	else if (s.style.display == 'block') 
	{
		s.style.display = 'none';
		b.className = 'bullet_brown';
		c.className = 'corners_hide';
	}
}

