function GetCurrent(){
    var cur = document.getElementById('current');
    var currency = cur.options[cur.selectedIndex].value;
    currency ? location.href = currency:'';
    return currency;
}
/*
var how="";
function clickIE() {if (document.all) {(how);return false;}}

function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(how);return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")*/

function popup(p,w,h){
	var left = (screen.availWidth/2) - (w/2);
	var top = (screen.availHeight/2) - (h/2);
	window.open(p,'Open','width='+w+',height='+h+',scrollbars=0,status=0, left='+left+', top='+top)
}

function winopen(url,stuff,morestuff) 
{
	var popwin = window.open(url,stuff,morestuff);
	
	// you may get "undefined" if a popup blocker did its thing...
	if( typeof(popwin) != "undefined" && popwin )
	{
		popwin.focus();
	}	
	lastPopup = popwin;
}

var Message= "Thanks for visiting www.groupharrington.com ";
var place=1;
function scrollIn() {
	window.status=Message.substring(0, place);
	if (place >= Message.length) {
		place=1;
		window.setTimeout("scrollOut()",1000);
	} else {
		place++;
		window.setTimeout("scrollIn()",50);
  }
}
function scrollOut() {
	window.status=Message.substring(place, Message.length);
	if (place >= Message.length) {
		place=1;
		window.setTimeout("scrollIn()", 200);
	} else {
		place++;
		window.setTimeout("scrollOut()", 100);
   }
}
scrollIn();