function buttoncheck(e) {
	if (document.all && event.button==2) {
		document.all.orderwindow.style.visibility="visible"
		alert("To contact me by email...\nFill in the form and send.\n\nThanks..!")
		return false
	}
	if (document.layers && e.which==3) {
		document.orderwindow.visibility="visible"
		alert("To contact me by email...\nFill in the form and send.\n\nThanks..!")
		return false
	}
}

function sendmail() {
	if (document.all) {
		document.all.orderwindow.style.visibility="hidden"
		document.forms[0].submit()
	}
	if (document.layers) {
		document.orderwindow.visibility="hidden"
		document.orderwindow.document.forms[0].submit()
	}
}

function closewindow() {
	if (document.all) {
		document.all.orderwindow.style.visibility="hidden"
	}
	if (document.layers) {
		document.orderwindow.visibility="hidden"
	}
}

if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=buttoncheck;       