function changeBg(name)
{
//	document.getElementById(name).style.background = '#99FF99';
	document.getElementById(name).style.background = '#81D0FF';
}

//Function for changing the color when it is not selected
function NormalBg(name)
{
	document.getElementById(name).style.background = '#FFFFFF';
}

// Function for Currency Converter
function openwindow()
{
	window.open('http://www.alldaychemist.com/currency_convertor.htm','','menubar=1,resizable=1,width=500,height=500');
}

