var applicationID = 0;

function showApplication(id){
	
	if (typeof id == 'undefined') {
		var id = applicationID;
	}else{
		applicationID = id;
	}
		
	$(document).ready(function(){
		$('#generic-popup-content').html($('#application-'+id).html());	
		tb_show('Application','/#TB_inline?&width=500&height=500&inlineId=generic-popup&modal=false&hideclose=true',''); 
	});
		
	return false;
}

function showCV(id){
	
	var selector = '#cv-content';
	
	if (typeof id != 'undefined') {
		selector = '#application-cv-'+id;
	}
	
	$(document).ready(function(){
		$('#generic-popup-content').html($(selector).html());	
		tb_show('CV','/#TB_inline?&width=500&height=500&inlineId=generic-popup&modal=false&hideclose=true',''); 
	});
	return false;
}
