
var engsiteurl = "http://www.excelsior-usa.com/";

function gettarget()
{
	var target = window.location.hash;
	target = engsiteurl+target.substr('1');
	return target;
}

function gotarget()
{
/*
	var target = window.location.hash;
	target = engsiteurl+target.substr('1');
	window.location = target;
*/
	window.location = gettarget();
}

function printtarget()
{
	document.write(gettarget());
}

function printanchor(label,wndname)
{
	var t = gettarget();
	if ( label == "" ) label = t;
	document.write("<a onClick=\"javascript:urchinTracker ('/out/go');\" href=\"");
	document.write(t);
	document.write("\"");
	if (wndname != "") {
		document.write(" target=\"");
		document.write(wndname);
		document.write("\"");
	}
	document.write(">");
	document.write(label);
	document.write("</a>");
}
