var logo_bright_src = '/design/logo.gif';
var logo_dim_src = '/design/logo_2.gif';
var bright = true;


function openWin(w, h, path){
	win = window.open("", "", "toolbar=no, status=no, menubar=no, width="+w+", height="+h);

	win.document.write('<html><body style="margin:0; padding:0;"><img title=""  width="'+w+'" height="'+h+'" alt="" src="'+path+'"></body></html>');
	return false;
}


function openWin2(w, h, path, descript){
	if(descript){
		height = eval(h)+40;
	}
	else{
		height = eval(h);
	}

	win = window.open("", "", "toolbar=no, status=no, menubar=no, width="+w+", height="+height);
	win.document.write('<html><body style="margin:0; padding:0;"><img title=""  width="'+w+'" height="'+h+'" alt="" src="'+path+'"><center>'+descript+'</center></noindex><div style="text-align: center; border-top: 1px solid gray; clear: both; padding: 10px 0px;"><br /></div></body></html>');
	return false;
}

function chengeLogo1(elem){// alert(document.getElementById('logo_'+elem.id).src);
	document.getElementById('logo_'+elem.id).src = logo_dim_src;
	document.getElementById('td_logo_'+elem.id).style. background = "#819ec0";
}

function chengeLogo2(elem){
	document.getElementById('logo_'+elem.id).src = logo_bright_src;
	document.getElementById('td_logo_'+elem.id).style. background = "";
}
