// zvetsovani textarey
var messageBoxSizeX = 100;
function messageBoxSize (box, method) {
	var bo = document.getElementById(box);
	if (method == 'small') {
		if (messageBoxSizeX > 99) {
			messageBoxSizeX -= 50;
		}
	}
	if (method == 'big') {
		if (messageBoxSizeX < 551) {
			messageBoxSizeX += 50;
		}
	}
	bo.style.height = messageBoxSizeX+'px';
}


function gid(id){
				return document.getElementById(id);
}

function reply(id,nick)
{
	gid('subject').value = 'RE:' +nick+' ';
	gid('reply_to').value = id;
}

