/* Javascript Version PSW3 */
/* Version: 1.0 || Date: 2009-5-7 || Author:Cyrano */
/* type="text/javascript" */

    function GenSwfObject(swfID,swfSrc,swfWidth,swfHeight)
    {
        document.write('<object id="'+swfID+'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+swfWidth+'" height="'+swfHeight+'">');
        document.write('<param name="movie" value="'+swfSrc+'" />');        
        document.write('<param name="quality" value="high" />');
        document.write('<param name="wmode" value="transparent" />');
        document.write('<embed name="'+swfID+'" width="'+swfWidth+'" height="'+swfHeight+'" type="application/x-shockwave-flash" wmode="transparent" quality="high" src="'+swfSrc+'" />');
        document.write('</object>');
    }
    function GenVideoObject(videoID,videoSrc,videoWidth,videoHeight,videoStart,videoCtrl)
    {    
        document.write('<object id="'+videoID+'" classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6" width="'+videoWidth+'" height="'+videoHeight+'" type="application/x-oleobject">');
        document.write('<param name="url" value="'+videoSrc+'" />');        
        document.write('<param name="autostart" value="'+videoStart+'" />');
        document.write('<param name="showcontrols" value="'+videoCtrl+'" />');
        document.write('<embed name="'+videoID+'" width="'+videoWidth+'" height="'+videoHeight+'" src="'+videoSrc+'" />');
        document.write('</object>');
    }
    function Switch(par)
    {
        document.getElementById('divForm').style.display = 'none';
        document.getElementById('divProcedure').style.display = 'none';
        document.getElementById('divPolicy').style.display = 'none';
        
        document.getElementById('div'+ par).style.display = '';
    }
