function xOpen(u){
	nw = window.open();
	if(!nw) nw = top;
	nw.location.href = u;
	nw.focus();
	return false;
}

function info(u){
	var window_width = '550';
	var window_height = '374';
	var window_top = (screen.height-window_height)/2-10;
	var window_left = (screen.width-window_width)/2-5;
	nw = window.open('about:blank','Details','width=' + window_width + ',height=' + window_height + ',top=' + window_top + ',left=' + window_left + ',features=toolbar=no,location=no,status=no,menubar=no,scrollbars=auto,resizable=no,maximize=no,minimize=no');
	if(!nw) nw = top;
	nw.location.href = u;
	nw.focus();
	return false;
}


