<!--

var leftPoint;

function screenSize() {
	if (screen.width < 710) {
		leftPoint = 0;
	} else {
		leftPoint = (screen.width - 710) / 2;
	}
}


function openPDF(sPdf) {
	screenSize();
	leftPoint = leftPoint + 16;
	topPoint = 53;
	pageWidth = 640;
	pageHeight = 580;
	features = "left=" + leftPoint + ",top=" + topPoint + ",width=" + pageWidth + ",height=" + pageHeight + ",toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes";
	myWindow = window.open( "pdfs/" + sPdf , "pdf", features);
	myWindow.focus();
}


function openschema(sfile) {
	screenSize();
	leftPoint = leftPoint + 16;
	topPoint = 53;
	pageWidth = 731;
	pageHeight = 555;
	features = "left=" + leftPoint + ",top=" + topPoint + ",width=" + pageWidth + ",height=" + pageHeight + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes";
	myWindow = window.open( sfile , "schema", features);
	myWindow.focus();
}

function openorder(sfile) {
	screenSize();
	leftPoint = leftPoint + 56;
	topPoint = 83;
	pageWidth = 356;
	pageHeight = 530;
	features = "left=" + leftPoint + ",top=" + topPoint + ",width=" + pageWidth + ",height=" + pageHeight + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes";
	myWindow = window.open( sfile , "order", features);
	myWindow.focus();
}

function printThis() {
	var sVersion = navigator.appVersion;
	if (navigator.appName == "Microsoft Internet Explorer" && sVersion.substring(0, 3) <= "3.0" ) {
		alert("Your browser does not support this function. Please press CTRL+P to print the page");
	}
	else {
		window.focus();
		window.print();
	}
}

//-->