function popup(mylink, windowname)
{
	if (! window.focus)return true;
	var href;
	if (typeof(mylink) == 'string')
	   href=mylink;
	else
	   href=mylink.href;
	window.open(href, windowname, 'width=500,height=300,scrollbars=yes');
	return false;
}

function searchclick(input) {
	if (input.value=='Search...')
		input.value='';
	input.style.color='#000000';
}

function addemot(emot) {
        var txtArea = document.getElementById('msg');
        txtArea.value+=":"+emot+":";
}

function showvotemsg(item) {
	document.getElementById('votebarmsg['+item+']').className='votemessage show';
}
function hidevotemsg(item) {
	document.getElementById('votebarmsg['+item+']').className='votemessage hide';
}
