function CheckIsIE()
{
if (navigator.appName.toUpperCase() == 'MICROSOFT INTERNET EXPLORER')
    {return true;}
else
    {return false;}
}

// *******************************************************************

function PrintThisFrame(pov_frame)
{
if (CheckIsIE() == true)
    {
    pov_frame.focus();
    pov_frame.print();
    }
else
    {
    var lcv_framename = pov_frame.name;
    window.frames[lcv_framename].focus();
    window.frames[lcv_framename].print();
    }
}

// *******************************************************************

function show_flash(pcv_file,pcv_width,pcv_height)
{
   document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="' + pcv_width + '" height="' + pcv_height + '">\n');
   document.write('<param name="movie" value="' + pcv_file + '">\n');
   document.write('<param name="quality" value="high">\n');
   document.write('<param name="wmode" value="transparent">\n');
   document.write('<embed src="' + pcv_file + '" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + pcv_width + '" height="' + pcv_height + '"></embed>\n');
   document.write('</object>\n');
}

