// 	
//		Copyright 2004-2005 8x10.se. All rights reserved.
//		Design and implementation by Lars Ake Vinberg.
//

function OpenMediumSize( file )
{
   var mysample=window.open(file,"_blank",
   //'width=800,height=800,scrollbars=no,status=no,toolbar=no,menubar=no,titlebar=no,location=no');
   'channelmode=no,directories=no,fullscreen=yes,scrollbars=yes,resizable=yes,status=no,toolbar=no,menubar=no,titlebar=no,location=no');
}

//	function OpenContactForm( file )
//	{
//	   var mysample=window.open(file,null,
//	   //'width=800,height=800,scrollbars=no,status=no,toolbar=no,menubar=no,titlebar=no,location=no');
//	   'width=600,height=530,channelmode=no,directories=no,fullscreen=no,scrollbars=no,status=no,toolbar=no,menubar=no,titlebar=no,location=no');
//	}


function click() 
{
	if (event.button == 2) 
	{
		alert('all content © 2004 Lars Åke Vinberg/8x10.se. all rights reserved.')
	}
}

//==========================================
// Enable to prevent rightclick on IE
//==========================================
document.onmousedown = click;



//
// the following code disables selection of text
//
/*
function disabletext(e)
{
	return false
}

function reEnable()
{
	return true
}
*/

//if the browser is IE4+
//document.onselectstart = new Function ("return false")

//if the browser is NS6
/*
if (window.sidebar)
{
	document.onmousedown = disabletext
	document.onclick=reEnable
}
*/