function applyForInterview(cmpId, amount) {
	if (amount == 0) amount = 350;
	$.facebox({ajax: 'php/applyForCompany.php?id='+cmpId+'&amt='+amount, bigfb : true });
}

function removeHTMLTags(strInputCode){
 	 	strInputCode = strInputCode.replace(/&(lt|gt);/g, function (strMatch, p1){
 		 	return (p1 == "lt")? "<" : ">";
 		});
 		var strTagStrippedText = strInputCode.replace(/<\/?[^>]+(>|$)/g, "");
		return strTagStrippedText;	
}

String.prototype.trim = function() { return this.replace(/^\s+|\s+$/, ''); };