// JavaScript Document
function mhHover(elemid, cls)
{
	document.getElementById(elemid).className = cls;
}

function convertCurrency( amount, from, to ){
 
  //alert('http://www.xe.com/ucc/convert.cgi?From=' + from + '&To=' + to + '&Amount=' + amount + '&<%=server.HTMLEncode("Header=[html][head][title]Bar in the Sun Currency Conversion - by XE.com[/title][/head][body]")%>&Footer=<%=server.HTMLEncode("[/body][/html]")%>');
  conPopUpWin = open( 'http://www.xe.com/ucc/convert.cgi?From=' + from + '&To=' + to + '&Amount=' + amount , 'conPopUpWin', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbar=yes,resizable=yes,copyhistory=yes,width=500,height=480,left=180, top=100,screenX=180,screenY=180');
	//enlargePhoto( 'http://www.xe.com/ucc/convert.cgi?From=' + from + '&To=' + to + '&Amount=' + amount + '&<%=server.HTMLEncode("Header=[html][head][title]Bar in the Sun Currency Conversion - by XE.com[/title][/head][body]")%>&Footer=<%=server.HTMLEncode("[/body][/html]")%>' );
}