<!--
function pu (url,x,y,name) {
	var win = null
	var centerwidth = (screen.width/2)-(x/2);
	var centerheight = (screen.height/2)-(y/2);
	var scrollbarstext = 'scrollbars = no,';
	var resizabletext = 'resizable = no,';
	var statustext = 'status = no,';
	var locationtext = 'location = no,';
	var toolbartext = 'toolbar = no,';
	var features = '';

features = scrollbarstext+resizabletext+statustext;
features = features + locationtext+toolbartext;
features = features + 'width = '+x+', height = '+y;
features = features + ',top = ' + centerheight;
features = features + ',left = ' + centerwidth;
win = window.open(url,name,features);
}

//-->