<!-- PUT ALL JAVASCRIPT FUNCTIONS IN THIS FILE AND LINK TO IT -->

var newWindow;

function openPDFWin(url)
{
	var winTop = (screen.height / 2) - 280;
	var winLeft = (screen.width / 2) - 375;
	
	var windowFeatures = "width=750,height=560,";
	windowFeatures = windowFeatures + "left=" + winLeft + ",";
	windowFeatures = windowFeatures + "top=" + winTop + ",";
	windowFeatures = windowFeatures + "resizable,scrollbars";

	newWindow = window.open(url,"pdf",windowFeatures);
	newWindow.focus();
	return false;
}

<!-- Following script opens Privacy Policy window -->
var privacyWindow;

function openPrivacyWin(url)
{
	var winTop = (screen.height / 2) - 200;
	var winLeft = (screen.width / 2) - 200;
	
	var windowFeatures = "width=400,height=400,";
	windowFeatures = windowFeatures + "left=" + winLeft + ",";
	windowFeatures = windowFeatures + "top=" + winTop + ",";
	windowFeatures = windowFeatures + "resizable,scrollbars";

	noticeWindow = window.open(url,"privacyWin",windowFeatures);
	noticeWindow.focus();
	return false;
}

<!-- ----------------------------------------------------------------------- -->