<!-- changeFrames -->
 function changeFrames(label)
 {
	base=window.location.protocol + "//" + window.location.host;
 	top.location.href=base + "/go.html?" + label;
 }

function shortCut(label)
 {
   l = linkinfo[label].l;
   m = linkinfo[label].m;
   parent.menu.location = m;
   parent.content.location = l;
 }


function jumpto(label) {
    if (window.opener) {
        base=window.location.protocol + "//" + window.location.host;
	window.opener.top.location.href=base + "/go.html?" + label;
	window.close();
    }
}
