function switchToFlash()
{
	var swf = new SWFObject('app.swf', 'main_movie','100%', '700px', '8.0.0.0', '#2A2A2A');
	swf.addVariable('xmladdress', 'xml/flash-site.xml');
	swf.addParam('scale', 'noscale');
	swf.write('flash-content');
	
	//hide the html version of the website
	//var hidecss = "<style type=\"text/css\">#html-content{display:none;}</style>";
	//writeHtml("css-content", hidecss);
}

function writeHtml(elementId, htmlVal)
{
	var n = (typeof elementId == 'string') ? document.getElementById(elementId) : elementId;
	n.innerHTML = htmlVal;
	return true;
}

function getDivById(elementId)
{
	return 
}
