<!--

function openProtocolPopup(strSource, width, height, posX, posY) {

	if(isNaN(width))  width ='660';
	if(isNaN(height)) height='584';

	if(isNaN(posX)) posX=50;
	if(isNaN(posY)) posY=50;

	protocolPopup = window.open(strSource,"protocolPopup","width=" + width + ",height=" + height + ",location=0,menubar=0,status=0,toolbar=0,scrollbars=0,resizable=0");
	protocolPopup.resizeTo(width,height);
	protocolPopup.moveTo(posX, posY);
	protocolPopup.focus();
	return protocolPopup;
	}


//-->