function createFlashControl( elemId, clsID, codebase, width, height, path, id, showBehind)
{

	elem = document.getElementById(elemId);
	var innerhtml;
	innerhtml = '<object ';	
	innerhtml += 'classid="clsid:' +clsID+ '" ' +
							'codebase="' +codebase+ '" ' +
							'id="' +id+ '" ' +
							'width="' +width+ '" ' +
							'height="' +height+ '">';
	innerhtml += '<param name="movie" value="' +path+ '">';
	innerhtml += '<param name="quality" value="high">';
	innerhtml += '<param name="bgcolor" value="#000000">';
	innerhtml += '<param name="allowScriptAccess" value="sameDomain">';
	innerhtml += '<param name="autoStart" value="-1">';
	innerhtml += '<param name="wmode" value="transparent">';
	innerhtml += '<embed src="' +path+ '" ';	
	innerhtml += 		'quality="high" ' +
						'wmode="transparent" ' +
						'pluginspage="http://www.macromedia.com/go/getflashplayer" ' +
						'type="application/x-shockwave-flash" ' +
						'width="' +width+ '" ' +
						'height="' +height+ '"></embed>';
	innerhtml += '</object>';
	
	elem.innerHTML = innerhtml;
}

function loadMusic()
{
	parent.spec.document.getElementById('snd').innerHTML = '<embed id="t1" src="'+tpls_path+'/sounds/vidus.mp3" autostart="true" loop="true" width="2" height="0"></embed><noembed><bgsound id="t2" src="vidus.mp3" loop="infinite"></noembed>';
}

function startMusic()
{
	parent.spec.document.getElementById('snd').innerHTML = '<embed id="t1" src="'+tpls_path+'/sounds/vidus.mp3" autostart="true" loop="true" width="2" height="0"></embed><noembed><bgsound id="t2" src="vidus.mp3" loop="infinite"></noembed>';
}

function stopMusic()
{
	parent.spec.document.getElementById('snd').innerHTML = '';
}