<!--

/***********************************************
* Copyright Intechnia Limited
* Code may not be re-used without explicit
* consent from Intechnia Limited
* http://www.intechnia.co.uk
***********************************************/

// swap style
function swap_style(strID, strStyle) {
	if (strID != null) {
	if(document.getElementById) {
		var elem = document.getElementById(strID);
	} else if (document.all){
		var elem = document.all[strID];
	}
	elem.className = strStyle;
	}
	
	return false;
}
//-->