/**
 * @author tmplimfe
 */
	function addhistory(){		
		param = 'tool=Calculators';
		http( 'POST' , '/en/tools/customcf/mysharp-ajax.cfc?method=addToolActivity', parseMySharpTools, param); 
	}
	
	function parseMySharpTools(obj) {
	 // This function if required to process the result of the ajax call
	}

	function cleanVarSession(){
		var prefix = window.parent.document.location.protocol + '//' +  top.location.hostname;
		var newURL = prefix + '/en/tools/customcf/mysharp-ajax.cfc?method=cleanMySharpSession';		
		http( 'POST' , newURL, parseMySharp); 		
		//http( 'POST' , '/en/tools/customcf/mysharp-ajax.cfc?method=cleanMySharpSession', parseMySharp); 
	}

	function parseMySharp(obj) {
	}
