	function showSample(numClipID, numKey, strAffiliateID) {
    jQuery.post(document.frmSamples.hdnSamplesURL.value.toString(),
                {clipid : numClipID.toString(), key : numKey.toString(), click : strAffiliateID.toString()},
                function (data)
                 {
                 $("#videobox").html(data);
                 $("#videobox").dialog({
											height: 320,
											width: 400,
											modal: true,
											autoOpen: false
											});
								 $("#videobox").dialog('open');
                 }
               );
	} // showSample()

	function closeSample() {
		$("#videobox").dialog('close');
	} // closSample()

