function liam()
{
input_box=confirm("Thanks for taking the time to contact us!\n\nClick OK to open your email form...");
if (input_box==true)

{ 
document.location="mailto:ruff@ruffstuf.com?subject=Website email to Ruff Stuff";
}

else
{
// Output when Cancel is clicked
alert ("Request cancelled");
}

}