function SetOperation(InOp)
	{
		if(InOp=='Update')
		{
			document.forms[1].operation.value = "Update"
		}
		else if(InOp=='Cancel')
		{
			document.forms[1].operation.value = "Cancel"
		}
		else
		{
			document.forms[1].operation.value = "Search"
		}
	}
	
function ExternalLink(URL)
	{
		if(confirm('You are now leaving our website. Westmoreland Coal Company assumes no responsibility for information or statements you may encounter on the Internet outside of our website. Thank you for visiting www.westmoreland.com.'))
		{
			window.open(URL);
			return;
		}
		else
		{return;}
	}
	
function Openme(newin) 
	{
		flyout=window.open(newin,"flyout","resizable=yes,scrollbars=yes,width=600,height=400,top=50,left=50,toolbar=yes,status=yes,menubar=yes")
	}