<!--

var message="";

function IEClicked(){
if (event.button==2){
return false;
}
}

function NSClicked(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=NSClicked;
}
else if (document.all&&!document.getElementById){
document.onmousedown=IEClicked;
}

document.oncontextmenu=new Function("null;return false")

// -->

function MG_OpenWin(url)
{
	mgWin = window.open(url,'newwin','toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,height=480,width=720');
	mgWin.document.title = 'MG DesignWorld - Image';
	mgWin.focus();
	return;
}


