function more_info( theme ) {
	miw = window.open( 'info.php?theme=' + theme, 'infoWin','toolbar=no,status=no,scrollbars=no,resizable=no,width=420,height=320' );
	miw.moveTo( (screen.width - 420) / 2, ( screen.height - 320 ) / 2 );
	miw.focus();
}

/**
* Layer handling by laze, 2004
*/

var sub_menu;
	sub_menu = 'nothing';

var timerID;

var wait_menu;
	wait_menu = 2500;

function offv( sub_menu ) { //- Set the visibility of 'sub_menu' hidden.
	if( sub_menu != 'nothing' ) {
		document.getElementById(sub_menu).style.visibility = 'hidden';
	}
	sub_menu = 'nothing';
	return true;
}

function clrt() { //- Turn off timer.
	clearTimeout( timerID );
}
/*
function showMove( max_height, layername ) {
	if ( max_height < document.getElementById( layername ).style.height ) {
		document.getElementById( layername ).style.height = document.getElementById( layername ).style.height + 1;
		clearTimeout( showerID );
		showerID = setTimeout( "showMove('" + sub_height + "', '" + layername + "')", 500 );
	}
	return true;
}
*/

function show( layername, switcher ) { //- Change visibility of 'layername' by 'switcher'.
		if( switcher > 0 ) {
		clrt();
		offv( sub_menu );
		sub_menu = layername;
		document.getElementById(layername).style.visibility = "visible";
	} else {
		timerID = setTimeout( "offv('" + layername + "')", wait_menu );
	}
}