

<!-- Following script opens Privacy Policy window -->
var pdfWindow;

function openpdfWin(url)
{
	var winTop = (screen.height / 2) - 250;
	var winLeft = (screen.width / 2) - 345;
	
	var windowFeatures = "width=690,height=500,";
	windowFeatures = windowFeatures + "left=" + winLeft + ",";
	windowFeatures = windowFeatures + "top=" + winTop + ",";
	windowFeatures = windowFeatures + "resizable,scrollbars";

	noticeWindow = window.open(url,"pdfWin",windowFeatures);
	noticeWindow.focus();
	return false;
}

<!-- ----------------------------------------------------------------------- -->




