/****************************************************************************
*	Global													04.02.2006-GB	*
*																			*
*																			*
*																			*
*																			*
****************************************************************************/

	function opendetailwindow() { 
		if (window.screen)
		{
			var screen_width = screen.availWidth;
			var w = Math.min(screen_width, 788);
		}
		var x = Math.round((screen_width - w) / 2);

		if (window.screen) {
			var screen_height = ((screen.height - 50) > screen.availHeight ) ? screen.height - 50 : screen.availHeight;screen_height = screen_height - 40;
			var h = Math.min(screen_height, 788);
		}
		var y = Math.round((screen_height - h) / 2);

		window.open('','detailwindow','width='+w+',left='+x+',height='+h+',top='+y+'toolbars=no,scrollbars=no,resizable=no');
	}


	
	/*function right(e) {
		if (navigator.appName == 'Netscape' && (e.which == 2 || e.which == 3)) {
			alert('© Copyright by {site_name}');
			return false;
		}
		else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button==2 || event.button == 3)) {
			alert('© Copyright by {site_name}');
			return false;
		}
		return true;
	}
	
	document.onmousedown=right;
	if (document.layers) window.captureEvents(Event.MOUSEDOWN);
	window.onmousedown=right;*/