// JavaScript Document
var baseCell;
function showDisclaim(){
	if(document.getElementById('textDiv')){removeAll();};
	baseCell=document.getElementById('converter');
	var textDiv=document.createElement('div');
	textDiv.setAttribute('id','textDiv');
	textDiv.innerHTML="<strong>Disclaimer</strong>All rates shown on this site are for indication only. Foreign exchange rates can fluctuate at any time. For the most current rates please contact us. Although up-to-the minute rates may be obtained by contacting CMCC, rates can only be guaranteed at the time the purchase or sales is conducted.";
	baseCell.appendChild(textDiv);
	
	var closeDiv=document.createElement('div');
	closeDiv.setAttribute('id','closeBtn');
	closeDiv.innerHTML="CLOSE";
	textDiv.appendChild(closeDiv);
	closeDiv.onclick=function(){removeAll();}
	textDiv.onclick=function(){removeAll();}
	function removeAll(){
		textDiv.removeChild(closeDiv);
		baseCell.removeChild(textDiv);
	}
}
