function OpenNewWindow(formname)
{	
	
	if (window.external) 
	{
	 Scene_Wnd = window.open(formname+'','WINDOW','scrollbars=yes,status=no,resizable=no,top=10,left=300,width=600,height=400');
	 Scene_Wnd.focus();
	}
	else
	{
	 Scene_Wnd = window.open(formname+'','WINDOW','scrollbars=yes,status=no,resizeable=no,top=10,left=300,width=600,height=400');
	 Scene_Wnd.focus();
	}
}

var sorry="Sorry! This function has been disabled.\n\n (C) 2008 Pax Events & Promotions."

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(sorry);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(sorry);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
