function checkBrowser()
{
if(navigator.appName != "Microsoft Internet Explorer")
{
location.href= "doc_questions_alt.html"
}
}

function select_text()
{
document.forms[0].elements[4].focus();
document.forms[0].elements[4].select();
window.scrollTo(0,0);
}

function copy_text(txt)
{
var temp_val = eval("document." + txt);
var the_range = temp_val.createTextRange();
the_range.execCommand("Copy");
}

function mail_to()
{
parent.location="mailto:iorcommittee@gmail.com?subject=Rare Bird Documentation";
}

function confirmClear()
{
var ans = confirm("Are you sure you want to clear this form? Doing so" +"\n" + "will completely erase your entries. If you do want to" + "\n" + "erase your entries, click OK. If you don't, click Cancel.");
if(ans==true)
{
document.forms[0].reset();
}

else
{
return false;
}

}
