//comment
function cell(txt)
{
	document.writeln('<tr>',txt,'</tr>')
}

function menu(txt,lnk){
	cell('<td class="MenuLink"><a href=JavaScript:link("' + lnk + '")>' + txt + '</a></td>')
}
function label(txt){
	cell('<td class="MenuLabel">'+txt+'</td>')
}
function line(){
	cell('<td class="MenuLine">&nbsp</td>')
}
function link(url){
	window.location.href=url;
}

function headerlink(txt,lnk){
	document.writeln('<a href=JavaScript:link("' + lnk + '")>' + txt + '</a>&nbsp;&nbsp;')
}

function ChangeLanguage()
{
  popwin=window.open("/portals/common/language.asp", "language", "height=100,width=250,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=no,status=0,toolbar=0", "language");
	popwin.moveTo(screen.width/2-50,screen.height/2-125)
}

