function new_screen(url, width, height, left, top) {
	var blob=window.open(url, '', 'resizable,status,toolbar,menubar,location,scrollbars,width=' + width + ',height=' + height + ',top=' + top + ',left=' + left + '');
	blob.focus();
}

