/********************
file.....: js/buttonover.js
Descr....: seacrh engine utils
Author...: George Stathis
Copyright: G&G - George Stathis - Gina Theodorly (www.gandg.gr)
*******************/
<!--
function showElement(theid,sel){
if  (sel==1)
	document.getElementById(theid).style.display='';
else
	document.getElementById(theid).style.display='none';
}
function fixnum1(n1){   
	while (n1.value.indexOf(",") > 0) {
	n1.value = n1.value.replace(",","");
	}
	while (n1.value.indexOf(".") > 0) {
	n1.value = n1.value.replace(".","");
	}
	return(n1);
}
