// Call Example - javascript:p11pop('http://www.google.com','testWindow','scrollbars=yes,resizable=yes','500','500','yes')// What that means - p11pop('location','windowName','features','width','height','centered')// Feature Options - toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes<!--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);}//-->