// JavaScript Document
function squirtFlash(data, width, height, bgcolor)
{
document.write('<object type="application/x-shockwave-flash" data="'+ data +'.swf" width="'+ width +'" height="'+ height +'">\n');
document.write('<param name="movie" value="'+ data +'.swf" />\n');
document.write('<param name="menu" value="false" />\n');
document.write('<param name="quality" value="high" />\n');
document.write('<param name="bgcolor" value="'+ bgcolor +'" />\n');
document.write('<img src="img/'+ data +'.jpg" width="'+ width +'" height="'+ height +'" alt="Nie ma zainstalowanego pluginu FLASH" />\n');
document.write('</object>\n');
}//end function

function squirtFlash(data, width, height, bgcolor, pvars)
{
document.write('<object type="application/x-shockwave-flash" data="'+ data +'.swf" width="'+ width +'" height="'+ height +'">\n');
document.write('<param name="movie" value="'+ data +'.swf" />\n');
document.write('<param name="menu" value="false" />\n');
document.write('<param name="quality" value="high" />\n');
document.write('<param name="bgcolor" value="'+ bgcolor +'" />\n');
document.write('<param name="wmode" value="transparent">');
document.write('<param name="FlashVars" value="' + pvars +'"\n');
document.write('<img src="img/'+ data +'.jpg" width="779" height="215" alt="Nie ma zainstalowanego pluginu FLASH" />\n');
document.write('</object>\n');
}//end function



