/*


	Copyright 2006 pkage design

	mail@pkage.com
    

*/
//
//
//maximize window ie/netscape
var x,y
y = window.screen.availHeight;
x = window.screen.availWidth;

window.resizeTo(x,y);
window.moveTo(0,0);
	

//
// noright click
	if (window.Event) // Netscape
  document.captureEvents(Event.MOUSEUP);
  
 function nocontextmenu()  // Internet Explorer
{
 event.cancelBubble = true
 event.returnValue = false;
 
 return false;
}
 
function norightclick(e)
{
 if (window.Event)
 {
  if (e.which == 2 || e.which == 3)
   return false;
 }
 else
  if (event.button == 2 || event.button == 3)
  {
   event.cancelBubble = true
   event.returnValue = false;
   return false;
  }
 }
 
document.oncontextmenu = nocontextmenu;
document.onmousedown = norightclick;
