function geth1(currentURL)
{
	var allParas = document.getElementsByTagName('h1');
	var num = allParas.length;
	
	tempURL = window.location.href;
	tempURL = tempURL.replace(currentURL,'');
		
	if (num == 0)
	{
		tempText = tempURL;
	}
	else
	{
		tempText = allParas[0].innerText || allParas[0].textContent;
	}
	
	//Must post the form so I can check referrer on next page.
	
	document.getElementById('bookmark_name').value = tempText;
	document.getElementById('bookmark_url').value = tempURL;
	document.getElementById('bookmark_form').submit();
	
	//window.location.href = '/bookmarks.asp?name=' + tempText+ '&URL=' + tempURL;
}