function showElement( n )
{
	e = document.getElementById(n);
	if( e )
	{
		e.style.display = 'block';
	}
}

function hideElement( n )
{
	e = document.getElementById(n);
	if( e )
	{
		e.style.display = 'none';
	}
}
/*
function wind( id ) 
{
	window.open('http://libimseti.cz/index.php?a=nt&id='+id,'Napoveda','scrollbars=no,resizable=yes,width=350,height=250');
}
*/

function divClose()
{
	hideElement('osobni');
	hideElement('vzhled');
	hideElement('povaha');
	hideElement('zajmy-a-sport');
	hideElement('media');
	hideElement('vztahy-a-rodina');
	hideElement('majetek');
	hideElement('mazlicci');
	hideElement('intimnosti');
	hideElement('partner-ka');
}

function divOpen( id )
{
	divClose();
	document.getElementById( id ).style.display = 'block';
}

function smile( n )
{
	var v = this.document.form1.txt;
	var add = "!" + n + "!";
	v.focus();
	if (document.selection) {
		sel = document.selection.createRange();
		sel.text = add;
	} else if( v.selectionStart || v.selectionStart == "0" ) {
		var startPos = v.selectionStart;
		var endPos = v.selectionEnd;
		var len = v.value.length;
		v.value = v.value.substring(0, startPos) + add + v.value.substring(endPos, len);
	} else {
		v.value += add;
	}
}


