function popinfo(url) {	
	var width 	= 650;
	var height 	= 470;
	var left 	=  10;
	var top 	=  10; 				
	
    var status	=	'NOTHING';
    var scroll	=	'yes';
    var resizeable = 1;
    var toolbar = 'no';
    var directories = 'no';
    var location = 'no';

    F3 =	window.open(url, name, 'WIDTH='+width+',HEIGHT='+height+',LEFT='+left+',TOP='+top+',TOOLBAR='+toolbar+',LOCATION='+location+',DIRECTORIES='+directories+',STATUS='+status+',RESIZABLE='+resizeable+',SCROLLBARS='+scroll+'');
    F3.focus();	
}