function OpenPosition(mywin)
{
	window.open(mywin,"popwin","width=650,height=370,left=100,top=100,scrollbars=yes,menubar=no,toolbar=no,resizable=1");
}//end of the 'openwin()'

function click() {
	if (event.button==2 || event.button == 3) {alert('Welcome to EML!')}
}
document.onmousedown=click

function stop(){
	alert ('Welcome to EML!')
	return false;
}
document.oncontextmenu=stop