// prepare the form when the DOM is ready 
$(document).ready(function() { 
    
   	$('#startFlashCards').click(function() {
   		
   		uid = $('#userId').attr('value');
   	
		flashWin = window.open('/flashcards/?u=' + uid , 'fozzaFlashCards', 'width=630,height=500');
		flashWin.focus();

		return false;
	});
	
}); 

