

<!-- project delivery methods window  -->
function pdmWindow(source) {
	leftPos = 0;
		if (screen) {
		leftPos = (screen.width-545)/2;
		}
	topPos = 0;
		if (screen) {
		topPos = (screen.height-425)/2;
		}
	aWindow = window.open(source, "pdm", "toolbar=no,location=no,scrollbars=yes,resizable=no,width=540,height=420,left="+ leftPos+",top="+ topPos +"");
	aWindow.focus();
		}

<!-- services & products window -->
function newWindow(source) {
	leftPos = 0;
		if (screen) {
		leftPos = (screen.width-675) - 15;
		}
	topPos = 0;
		if (screen) {
		topPos = (screen.height-500)/2;
		}
	aWindow = window.open(source, "services","toolbar=no,location=no,scrollbars=yes,resizable=no,width=675,height=500,left="+ leftPos +",top="+ topPos +"");
	aWindow.focus();
	}


<!-- papers and pdf window -->
function new2Window(source) {
	leftPos = 0;
		if (screen) {
		leftPos = (screen.width-675)/2;
		}
	topPos = 0;
		if (screen) {
		topPos = (screen.height-570);
		}
	aWindow = window.open(source, "files","toolbar=no,location=no,scrollbars=yes,resizable=no,width=675,height=500,left="+ leftPos +",top="+ topPos +"");
	aWindow.focus();
	}

<!-- newsletter window -->
function enewsWindow(source) {
	leftPos = 0;
		if (screen) {
		leftPos = (screen.width-700)/2;
		}
	topPos = 0;
		if (screen) {
		topPos = (screen.height-500)/2;
		}
	aWindow = window.open(source, "newsletter", "toolbar=no,location=no,scrollbars=yes,resizable=yes,width=700,height=500,left="+ leftPos+",top="+ topPos +"");
	aWindow.focus();
		}