/**
 * function to show the terms and conditions modal box
 * 
 */

function show_tc() 
{
	$.ajax({
		   type: "GET",
		   url: "/popup/tc",
		   success: function(data){
			   show_popup_jquery('terms_and_conditions', 650, 850, data, 'Terms and Conditions', true, false);
		   }		  
		});
}
