function Search()
{
	var q=document.getElementById('search');
	if(q.value=='' || q.value=='Enter keyword here')
	{
		q.value='Enter keyword here';
		q.focus();
		q.select();
	}
	else
	{
		location.href='/search.php?search=' + q.value;
	}
}

function Contact()
{
	window.open('http://www.get-freetrial.us/contact.php');
}

function buynow(i)
{
	window.open('http://www.get-freetrial.us/buy.php?item=' + i);
}

function gohome(pi,ai)
{
	window.open('http://www.shareit.com/product.html?productid=' + pi + '&affiliateid=' + ai);
}

function download(url)
{
	window.open(url);
}

