// S imon CREATED 20040224

function right(mousebutton)
{
	if (navigator.appName == 'Microsoft Internet Explorer' && event.button == 2)
	{
		return false;
	}
	return true;
}

function ds() {
	return false;
}

//document.onmousedown = right;
//document.oncontextmenu= ds;



function openwin(url) {
	var aWindow;
	aWindow=window.open(url, "document", "width=800, height=600");
	aWindow.focus();
}
function openswin(url) {
	var aWindow;
	aWindow=window.open(url, "document", "toolbar=0,scrollbars=1,statusbar=0,menubar=0,resizable=0,width=400, height=300");
	aWindow.focus();
}


