function screencastLink(id, width, height) {
    $("#" + id).fancybox({
       'type'		: 'swf',
       'width'          : width,
       'height'         : height,
       'autoScale'	: false,
       'margin'	        : 0,
       'padding'	: 0,
       'transitionIn'	: 'none',
       'transitionOut'	: 'none',
       'swf'		: {
           'bgcolor'           : '#1a1a1a',
           'quality'           : 'best',
           'allowScriptAccess' : 'always',
           'allowFullScreen'   : 'true',
           'scale'             : 'showall',
           'flashVars'         : 'autostart=true&showstartscreen=false&showendscreen=false&color=0x1A1A1A,0x1A1A1A',
	   'wmode'             : 'transparent'
	}
    });
}

