function back()
{
window.history.back()
}

function go()
{
window.history.go(- 2)
}

function validate()
{
if((document.comment.name.value=="")||(document.comment.email.value=="")||(document.comment.comment.value==""))
{
alert("all fields are required")
return false
}
if((document.comment.email.value.indexOf("@")<1)||(document.comment.email.value.lastIndexOf(".")-document.comment.email.value.indexOf("@")<2))
{
alert("a valid email-address is required (but wont be posted)")
return false
} 
}

function replaceDoc()
{
window.location.replace("http://www.linusstore.eu/amiina/magnus_says_no.html")
}

function newwindow(url)
{
window.open(url, "_blank", "height=500, width=750, menubar=no, toolbar=yes, scrollbars=yes")
}