

function show_more()
{
	$('#show_more').hide(500,function() {
		
			$('#textmore').show(500);		
	});
}

function printpage() {
  window.print();
  }
  
function remove(el,text)
{
	if(el.value == text)
	{
		el.value = '';
	}
}

function add(el,text)
{
	if(el.value.length == 0)
	{
		el.value = text;
	}
}
