function WriteFlash(filename, width, height, id, bgcolor)
{
    document.write('<object type=\"application/x-shockwave-flash\" data=\"'+filename+'\" width=\"'+width+'px\" height=\"'+height+'px\" VIEWASTEXT><param name=\"quality\" value=\"high\" /><param name=\"wmode\" value=\"transparent\" />');
    
    if (bgcolor!='')
		document.write('<param name=\"bgcolor\" value=\"#'+bgcolor+'\" />');
		
	document.write('<param name=\"movie\" value=\"'+filename+'\" />');
	document.write('</object>');
}

function WriteLidingsFlash(filename, width, height, id, bgcolor, sceneNumber)
{
    document.write('<object type=\"application/x-shockwave-flash\" data=\"'+filename+'\" width=\"'+width+'px\" height=\"'+height+'px\" VIEWASTEXT><param name=\"quality\" value=\"high\" /><param name=\"wmode\" value=\"transparent\" />');
    if (bgcolor!='')
        document.write('<param name=\"bgcolor\" value=\"#'+bgcolor+'\" />');
    if (sceneNumber!='0')
        document.write('<param name=\"FlashVars\" value=\"newitem='+sceneNumber+'\">')
    document.write('<param name=\"movie\" value=\"'+filename+'\" />');
    document.write('</object>');
}