// ************************************************
// This file has been written by David Domingues
// you are free to use it and change it as you need
// but i will ask you to keep this header on the file
// and never remove it.
// comSettings downloaded at http://www.webrickco.com
// webrickco@gmail.com
// ************************************************
// JavaScript Document
// login functions
function searchclear()
{
	if (document.getElementById('searchinput').value=='Search...')
		document.getElementById('searchinput').value = '';
}

function searchdefault()
{
	if (document.getElementById('searchinput').value=='')
		document.getElementById('searchinput').value = 'Search...';
}

function gotoresult(searchtype, page)
{
	document.getElementById('currentpage'+searchtype).value = page;
	document.getElementById('warticlesearch').action='search.php';
	document.warticlesearch.submit();
}


