function href(url){
	document.location.href=url;
}

function ShowWnd(Wnd,width,height) {
	Wnd_window=open(Wnd, 'Wnd', 'fullscreen=no,channelmode=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+width+',height='+height);
	Wnd_window.focus();
	return(false);
}
function msgwin(file) {
  subwin=open(file, "subwin", "width=400, height=400, scrollbars=1, resizable=1");
  subwin.focus();
}