// A function which toggles more information in the blue box on the
// left side of the website
//
// Arguments:
// @sCase - a string which refers to the type of information to toggle
function fMoreInfo(sCase) {	
	// Use a switch case to handle the different types of calls
	switch (sCase) {
	case 'tel':
		$$('#extra_info_block .content .html').set('html', '<strong>Wij zijn te bereiken op:</strong> 030 - 890 12 73');
		break;
	case 'mail':
		$$('#extra_info_block .content .html').set('html', '' + 
			'<form id="formQuickmail" method="post" action="contact.html" onsubmit="return inputQuickCheck();">' + 
					'<input type="hidden" name="versturen" id="versturen" value="true" />' + 
					'<input type="hidden" name="contactName" id="contactName" value="quickmailform" />' + 
					'<div class="left">' + 
						'<strong>E-mail adres:</strong>' + 
					'</div>' + 
					'<div class="right">' + 
						'<input type="text" name="contactMail" id="contactMail" class="inputElement textbox" /><br />' + 
					'</div>' + 
					'<div class="error">' + 
						'<div id="contactMail_err" class="redTextMedium" style="display: none; color: #000000;"></div>' + 
					'</div>' + 
					'<div class="right">' + 
						'<strong>Reactie / opmerking:</strong>' + 
					'</div>' + 
					'<textarea name="contactMessage" id="contactMessage" cols="35" rows="8" class="inputElement textarea" style="width: 239px; height: 100px;"></textarea>' + 
					'<div class="clearAll">&nbsp;</div>' + 
					'<div class="error">' + 
						'<div id="contactMessage_err" class="redTextMedium" style="display: none; color: #000000;"></div>' + 
					'</div>' + 
					'<div style="float: left; margin-right: 5px;">' + 
						'<input type="submit" name="contactBut" id="contactBut" value="Verstuur" class="inputElement button" style="float: left" />' + 
					'</div>' + 
					'<div class="right">' + 
						'<a href="contact.html" title="Ga naar het contactformulier">Ga naar het contactformulier</a>' + 
					'</div>' + 
					'<div class="error">' + 
						'<div id="algemene_feedback_err" class="redTextMedium" style="display: none; color: #000000;"></div>' + 
					'</div>' + 
					'<div class="clearAll">&nbsp;</div>' + 
			'</form>');
		break;
	}

	// Turn the content block visible
	$('extra_info_block').setStyle('display', 'block');
}