function popup(width, height, url){
		pLeft=(screen.width/2)-(width/2);
		PTop=(screen.height/2)-(height/2);
		fullev=window.open(url,"fulleventwindow",	"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width="+width+",height="+height+",left="+pLeft+",top="+PTop);
		fullev.document.focus();
}
