function flash(src,w,h,string_values) {
    if (string_values==undefined) {
      document.write('<object type="application/x-shockwave-flash" data="'+src+'" width="'+w+'" height="'+h+'" wmode="transparent"><param name="movie" value="'+src+'" /><param name="wmode" value="transparent" /></object>');
    } else {
      document.write('<object type="application/x-shockwave-flash" FlashVars="'+string_values+'" data="'+src+'" width="'+w+'" height="'+h+'" wmode="transparent"><param name="movie" value="'+src+'" /><param name="wmode" value="transparent" /><param name="FlashVars" value="'+string_values+'" /></object>');
    }
}

$(document).ready(function() {

	$(".ajaxform").ajaxForm({
		success: function (responseText, statusText) { 
		   eval(responseText); 
		}
	});   
   
   $('.external').click(function() { window.open(this); return false; });
   
   $(".lightbox").lightBox();   

});