// ****************************************************************************
// onOpenTasting
// ****************************************************************************
function onOpenTasting(strURL) {
	document.observe('lightview:opened', function(event) {
		sIFR_Update();
	});

  Lightview.show({
    href: strURL,
    rel: 'ajax',
    title: '',
    caption: '',
    options: {
      width: 763,
      height: 440,
			closeButton: false,
      ajax: {
        method: 'get',
        evalScripts: true,
				onComplete: function(){
				}
      }
		}
  });
}
