function tardis(targ,selObj,restore){ //v3.0
str = selObj.options[selObj.selectedIndex].value;
if (str == 'null') return;
prefix = (str.indexOf('http:') != 0 ? 'http://www.ireland.com/' : '');
eval(targ+".location='"+prefix+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}

