function btnMenu1Up(thatBtn){
	thatBtn.style.backgroundColor='#DDDDEE';
	thatBtn.style.borderColor='#3276C6';	
	thatBtn.style.color='#3276C6';
	window.status='';
	return true;
}

function btnMenu1Ov(thatBtn,txtBtn){
	thatBtn.style.backgroundColor='#3276C6';
	thatBtn.style.borderColor='#3276C6';		
	thatBtn.style.color='#DDDDEE';
	window.status=txtBtn;
	thatBtn.style.cursor='hand';
	return true;
}

function btnGoTo(gotoPlace){
	varGoTo=gotoPlace;
	window.location.href=varGoTo;
}

function ShowPicture(URL,id) {
    sw = screen.width;
    sh = screen.height;
    wid = 440; hei = 670;
    px = (sw-wid) / 2;
    py = (sh-hei) / 2;
    opt = 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+wid+',height='+hei+',left='+px+',top='+py;
    popWin=window.open(URL,id,opt);
    if(popWin.focus) { popWin.focus(); }
}
