// JavaScript Document

/*

function bline (divname) {
	var divaltname = "<img src="+"\"alts/"+divname + "_alt.png\">";
	document.getElementById(divname).innerHTML=divaltname;
	
}


function bclear () {
	document.getElementById('bottom1').innerHTML="";
	document.getElementById('bottom2').innerHTML="";
	document.getElementById('bottom3').innerHTML="";
	document.getElementById('bottom4').innerHTML="";	
}
*/

function bline (divname) {
	switch (divname) {
		case 'bottom1':
			document.getElementById('bottomdetail').innerHTML="Click for more details on Symach technology, workflow management and production planning";
		break;
		
		
		case 'bottom2' :
			document.getElementById('bottomdetail').innerHTML="Click to visit the online TV station for car repairers";
		break;
		
		case 'bottom3' :
			document.getElementById('bottomdetail').innerHTML="The easiest way to increase your upselling";
		break;
		
		case 'bottom4' :
			document.getElementById('bottomdetail').innerHTML="Professional High Definition filmmaking - incredible value marketing";
		break;
	
		case 'remote' :
			document.getElementById('bottomdetail').innerHTML= "Click here to download the remote support client, allowing our technicians to view your screen";
		break;
		
		case 'clear' :
			document.getElementById('bottomdetail').innerHTML= "";
		break;
	
	}
}

function linkout (page) {
	var dest = page +".html";
	document.location=dest;
}

