function showTitle(theFont,theTitle,theColour,w,h,fontSize){
	var titleObj;
		titleObj = '<object classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 codebase=https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" class=\"titleimg\" id=\"titleimg\" style=\"width:' +  w  + 'px;height:' + h + 'px\">';
		titleObj += '<param name=movie value=\"/swf/titles/title.swf\">';
		titleObj += '<param name=quality value=\"high\">';
		titleObj += '<param name=bgcolor value=\"#ffffff\">';
		titleObj += '<param name=wmode value=\"transparent\">';
		titleObj += '<param name=menu value=\"true\">';
		titleObj += '<param name=class value=\"titleimg\">';
		titleObj += '<param name=flashvars value=\"theText=' + theTitle + '&fcolor=' + theColour + '&fSize='+ fontSize +'&tfont=' + theFont + '\">';
		titleObj += '<embed src=\"/swf/titles/title.swf\" pluginspage=\"https://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" class=\"titleimgx\" menu=\"false\" style=\"width:' +  w  + 'px;height:' + h + 'px;position:relative;left:0px;top:0px\" flashvars=\"theText=' + theTitle + '&fcolor=' + theColour +  '&fSize='+ fontSize +'&tfont=' + theFont + '\" wmode=\"transparent\">';
		titleObj += '</embed>';
		titleObj += '</object>';
		document.getElementById('innerBanner').innerHTML = titleObj;
}


function showPageTitle(theFont,theTitle,theColour,w,h,fontSize){

	var titleObj;
	titleObj = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase=https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" class=\"pagetitleimg\" style=\"width:' +  w  + 'px;height:' + h + 'px\">';
	titleObj += '<param name=movie value=\"/swf/titles/title.swf\">';
	titleObj += '<param name=quality value=high>';
	titleObj += '<param name=bgcolor value=#ffffff>';
	titleObj += '<param name=wmode value=transparent>';
	titleObj += '<param name=menu value=false>';
	titleObj += '<param name=flashvars value=\"theText=' + theTitle + '&fcolor=' + theColour + '&fSize='+ fontSize +'&tfont=' + theFont + '&pageT=pageT\">';
	titleObj += '<embed src=\"/swf/titles/title.swf\" pluginspage="https://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type=application/x-shockwave-flash class=\"pagetitleimg\" menu=false style=\"width:' +  w  + 'px;height:' + h + 'px;position:relative;left:0px;top:0px\" flashvars=\"theText=' + theTitle + '&fcolor=' + theColour +  '&fSize='+ fontSize +'&tfont=' + theFont + '\" wmode=\"transparent\">';
	titleObj += '</embed>';
	document.getElementById('pageTitleArea').innerHTML = titleObj;
}


