//p11 pop

var win = null;
function p11pop(theURL,winName,features,w,h,centered) { //v2.0
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	if (centered == 'yes') {
	realFeatures = (features+',top='+TopPosition+',left='+LeftPosition+',width='+w+',height='+h);
	}
	else {
	realFeatures = (features+',width='+w+',height='+h+'left=0,top=0');
	}
	win = window.open(theURL,winName,realFeatures);
}