$(document).ready(function() {

 // hides the slickbox as soon as the DOM is ready

 // (a little sooner than page load)

  $('#slickbox').hide();

 // shows the slickbox on clicking the noted link  

  $('a#slick-show').click(function() {

    $('#slickbox').show('slow');

    return false;

  });

 // hides the slickbox on clicking the noted link  

  $('a#slick-hide').click(function() {

    $('#slickbox').hide('fast');

    return false;

  });

 

 // toggles the slickbox on clicking the noted link  

  $('a#slick-toggle').click(function() {

    $('#slickbox').toggle(400);

    return false;

  });

});

//---------------------ActiveX--EMBED-------------------//
function printActiveX(source, width, height, id) {
	document.write('<object classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" width="'+width+'" height="'+height+'" id="'+id+'" />');
	document.write('<param name="FileName" value="'+source+'" />');
	document.write('<param name="Autostart" value="True" />');
	document.write('<param name="ShowControls" value="True" />');
	document.write('<param name="ShowStatusBar" value="False" />');
	document.write('<param name="ShowDisplay" value="False"/>');
	document.write('<param name="AutoRewind" value="True" />');
	document.write('<embed src="'+source+'" width="'+width+'" height="'+height+'" />');
	document.write('</object>');
}






