// JavaScript Document
var ie6;

function print_mail_to(mailto_name, mailto_domain, mailto_subject, mailto_body, mailto_style)
{
	document.write('<a href=\"mailto:');
	document.write(mailto_name+'@');
	document.write(mailto_domain+'?');
	document.write('Subject='+mailto_subject+'&amp;');
	document.write('body='+mailto_body+'\" onFocus=\"if(this.blur)this.blur()\" ');
	document.write(' class=\"'+mailto_style+'\">'+mailto_name);
	document.write('@'+mailto_domain);
	document.write('</a>');
}


function switchFull(imgName, full)
{
	imgId = document.getElementById(imgName);
	imgId.src = full;
}

function toggle_div(theDiv)
{
	divB = document.getElementById(theDiv);
	if(divB.style.display == 'inline')
	{
		divB.style.display = 'none';
	}
	else
	{
		divB.style.display = 'inline';
	}
}

function toggle_menu(theDiv)
{
	for(a = 1; a <= 5; a++)
	{
		if((document.getElementById('td' + a + '_div'))&&(theDiv != 'td' + a + '_div'))
		{
			divB = document.getElementById('td' + a + '_div');
			divB.style.display = 'none';
		}
	}
	toggle_div(theDiv);
}

function help_bubble(topic, e)
{
	var posx = 0;
	var posy = 0;
	if (!e) var e = window.event;
	if (e.pageX || e.pageY) 	{
		posx = e.pageX - 50;
		posy = e.pageY;
	}
	else if (e.clientX || e.clientY) 	{
		posx = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft - 200;
		posy = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;
	}
	x = posx + 5;
	y = posy + 5;
	if (!window.XMLHttpRequest)
	{
		x = x - 100;
	}
	divB = document.getElementById('help_div_' + topic);
	if(divB.style.display == 'inline')
	{
		divB.style.display = 'none';
	}
	else
	{
		divB.style.display = 'inline';
		divB.style.top = y + 'px';
		divB.style.left = x + 'px';
	}
}

function infoboxToggle(box)
{
	if(box == 'partner')
	{
		document.getElementById('info-box-inhouse').style.display = 'none';
		document.getElementById('info-box-partner').style.display = 'inline';
		document.getElementById('info-img-inhouse').src = '/templates/1/images/icons/info-inhouse-grey.jpg';
		document.getElementById('info-img-partner').src = '/templates/1/images/icons/info-partner-blue.jpg';
	}
	if(box == 'inhouse')
	{
		document.getElementById('info-box-inhouse').style.display = 'inline';
		document.getElementById('info-box-partner').style.display = 'none';
		document.getElementById('info-img-inhouse').src = '/templates/1/images/icons/info-inhouse-blue.jpg';
		document.getElementById('info-img-partner').src = '/templates/1/images/icons/info-partner-grey.jpg';
	}
	if(box == 'related')
	{
		document.getElementById('info-box-related').style.display = 'inline';
		document.getElementById('info-box-testimonials').style.display = 'none';
		document.getElementById('info-box-additional').style.display = 'none';
		document.getElementById('info-img-related').src = '/templates/1/images/icons/info-related-blue.jpg';
		document.getElementById('info-img-testimonials').src = '/templates/1/images/icons/info-testimonials-grey.jpg';
		document.getElementById('info-img-additional').src = '/templates/1/images/icons/info-additional-grey.jpg';
	}
	if(box == 'testimonials')
	{
		document.getElementById('info-box-related').style.display = 'none';
		document.getElementById('info-box-testimonials').style.display = 'inline';
		document.getElementById('info-box-additional').style.display = 'none';
		document.getElementById('info-img-related').src = '/templates/1/images/icons/info-related-grey.jpg';
		document.getElementById('info-img-testimonials').src = '/templates/1/images/icons/info-testimonials-blue.jpg';
		document.getElementById('info-img-additional').src = '/templates/1/images/icons/info-additional-grey.jpg';
	}
	if(box == 'additional')
	{
		document.getElementById('info-box-related').style.display = 'none';
		document.getElementById('info-box-testimonials').style.display = 'none';
		document.getElementById('info-box-additional').style.display = 'inline';
		document.getElementById('info-img-related').src = '/templates/1/images/icons/info-related-grey.jpg';
		document.getElementById('info-img-testimonials').src = '/templates/1/images/icons/info-testimonials-grey.jpg';
		document.getElementById('info-img-additional').src = '/templates/1/images/icons/info-additional-blue.jpg';
	}
}

// end hiding -->

