function doCurrencyConversion() {
	theForm = document.getElementById('ccForm')
	amount = theForm.elements["Amount"].value;
	ratefrom = theForm.elements["RateFrom"].value;
	rateto = theForm.elements["RateTo"].value;
	res = Math.round(100 * amount / (ratefrom / rateto))/100;
	theForm.elements["Exchange"].value = res;
}
function PrintNews(url) {
	window.open(url,"LP_News_Item_Printout","width=748,height=560,resizable=no,scrollbars=yes,status=yes,toolbar=yes");
	//alert("Print");
}
function EmailNews(url) {
	window.open(url,"LP_News_Item_Email","width=360,height=320,resizable=no,scrollbars=no,status=no,toolbar=no,top=100,left=180");
	//alert("Email");
}
function PrintDoc(url) {
	window.open(url,"LP_Resource_Document_Printout","width=725,height=560,resizable=no,scrollbars=yes,status=yes,toolbar=yes");
}
