var g_sURL;
var g_sDesc;
function sendto(sURL, sDesc)
{
	g_sDesc = sDesc;
	g_sURL = sURL;
	oWin = window.open("/transport.htm", "leaving", "width=300,height=195,resizable=0,scrollbars=0");
	oWin.focus();
}
function sho(s, iBare, x, y)
{
	var w1 = "";
	x = (x ? x : 800);
	y = (y ? y : 600);
	//w1 = window.open(s, "w1", "resizable,scrollbars=yes,width=700,height=400");
	w1 = window.open(s, "w1", ((iBare)? "resizable,scrollbars=yes,width=" + x + ",height=" + y:""));
	if(!w1)
		alert("This site uses popup windows but I tried to open one without success.\nDo you have popups disabled?");
	else
		w1.focus();
}