
if (document.layers)
{
		document.captureEvents(Event.MOUSEDOWN);
		document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById)
{
		document.onmousedown=clickIE4;
}

	document.oncontextmenu=new Function("return false;")


