function dopop(page,name,w,h,scroll,status,fixed) {
	LeftPosition = ((screen.width) ? (screen.width-w)/2 : 0);
	TopPosition = ((screen.height) ? (screen.height-h)/2 : 0);
	settings =  'height='+h+',width='+w+',';
	settings += 'top='+TopPosition+',left='+LeftPosition+',';
	settings += 'scrollbars='+scroll+',status='+status+',resizeable='+fixed;
	var its = window.open(page,name,settings);
	its.focus();
}

