function cancel()
{
	$.unblockUI();
			
	if(login_form.has_swf.value != 0)
		$('#embed').html('<embed width="960px" height="500px" type="application/x-shockwave-flash" src="http://www.slideflickr.com/slide/'+login_form.has_swf.value+'&amp;no_comment=1"></embed>');	
}

$(function() { 
	// cache the question element 
	var question = $('#question')[0]; 

	$('#test').click(function() { 
		$.blockUI(question, { width: '370px' }); 
		
		if(login_form.has_swf.value != 0)
			$('#embed').html('<img src="http://www.slideflickr.com/include/css/img/black.gif" width="960px" height="500px"/>');
			
	}); 

	$('#no').click(function(){
		$.unblockUI();
			
		if(login_form.has_swf.value)
			$('#embed').html('<embed width="960px" height="500px" type="application/x-shockwave-flash" src="http://www.slideflickr.com/slide/'+login_form.has_swf.value+'&amp;no_comment=1"></embed>');

	}); 
	
	$('#yes').click(function() { 
		$.unblockUI();
	});
}); 
    
$(document).ready(function() {
	login_form = document.forms["form2"];
});