<!--

function open_window(url,winX,w,h) {
	var winX=winX?winX:'Window';
	var w=w?w:600;
	var h=h?h:300;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	win = window.open(url,winX,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition);
	if(win.window.focus){win.window.focus();}
}

function open_window(url,winX,w,h,rs,s) {
	var winX=winX?winX:'Window';
	var w=w?w:600;
	var h=h?h:300;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	win = window.open(url,winX,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+s+',resizable='+rs+',width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition);
	if(win.window.focus){win.window.focus();}
}

function captureEvents(){
	return false;
}

-->