// JavaScript Document
<!--
// LAUNCHES newWindow MID-SCREEN
function newWindowFuel()	{
	var width = 460;
	var height = 500;
	var screenX = screen.width
	var screenY = screen.height

	var x = (screenX - width)/2;
	var y = (screenY - height)/3;

	var terms = window.open("windows/cement-fuel.htm","terms","status=no,scrollbars=yes,resizable=no,location=no,toolbar=no,menubar=no,width=" + width + ",height=" + height + ", top=" + y + ", left=" + x);
	terms.focus();
}
function newWindowCementComments()	{
	var width = 460;
	var height = 500;
	var screenX = screen.width
	var screenY = screen.height

	var x = (screenX - width)/2;
	var y = (screenY - height)/3;

	var terms = window.open("windows/cement-comments.htm","terms","status=no,scrollbars=yes,resizable=no,location=no,toolbar=no,menubar=no,width=" + width + ",height=" + height + ", top=" + y + ", left=" + x);
	terms.focus();
}
function newWindowIssues(issue)	{
	var width = 460;
	var height = 500;
	var screenX = screen.width
	var screenY = screen.height
	
	var issue = issues

	var x = (screenX - width)/2;
	var y = (screenY - height)/3;

	var terms = window.open("windows/cementissue.php?openIssue=issues","terms","status=no,scrollbars=yes,resizable=no,location=no,toolbar=no,menubar=no,width=" + width + ",height=" + height + ", top=" + y + ", left=" + x);
	terms.focus();
}
function newWindowQuarrying()	{
	var width = 460;
	var height = 500;
	var screenX = screen.width
	var screenY = screen.height

	var x = (screenX - width)/2;
	var y = (screenY - height)/3;

	var terms = window.open("windows/cement-quarrying.htm","terms","status=no,scrollbars=yes,resizable=no,location=no,toolbar=no,menubar=no,width=" + width + ",height=" + height + ", top=" + y + ", left=" + x);
	terms.focus();
}
function newWindowWaste()	{
	var width = 460;
	var height = 500;
	var screenX = screen.width
	var screenY = screen.height

	var x = (screenX - width)/2;
	var y = (screenY - height)/3;

	var terms = window.open("windows/cement-waste.htm","terms","status=no,scrollbars=yes,resizable=no,location=no,toolbar=no,menubar=no,width=" + width + ",height=" + height + ", top=" + y + ", left=" + x);
	terms.focus();
}
function newWindowDust()	{
	var width = 460;
	var height = 500;
	var screenX = screen.width
	var screenY = screen.height

	var x = (screenX - width)/2;
	var y = (screenY - height)/3;

	var terms = window.open("windows/cement-dust.htm","terms","status=no,scrollbars=yes,resizable=no,location=no,toolbar=no,menubar=no,width=" + width + ",height=" + height + ", top=" + y + ", left=" + x);
	terms.focus();
}
function newWindowCouncilArchiveDocs()	{
	var width = 460;
	var height = 500;
	var screenX = screen.width
	var screenY = screen.height

	var x = (screenX - width)/2;
	var y = (screenY - height)/3;

	var terms = window.open("windows/council-docsArchive.php","terms","status=no,scrollbars=yes,resizable=no,location=no,toolbar=no,menubar=no,width=" + width + ",height=" + height + ", top=" + y + ", left=" + x);
	terms.focus();
}
function newWindowPrivacy()	{
	var width = 460;
	var height = 500;
	var screenX = screen.width
	var screenY = screen.height

	var x = (screenX - width)/2;
	var y = (screenY - height)/3;

	var terms = window.open("windows/privacy.htm","terms","status=no,scrollbars=yes,resizable=no,location=no,toolbar=no,menubar=no,width=" + width + ",height=" + height + ", top=" + y + ", left=" + x);
	terms.focus();
}
function newWindowTerms()	{
	var width = 460;
	var height = 500;
	var screenX = screen.width
	var screenY = screen.height

	var x = (screenX - width)/2;
	var y = (screenY - height)/3;

	var terms = window.open("windows/terms.htm","terms","status=no,scrollbars=yes,resizable=no,location=no,toolbar=no,menubar=no,width=" + width + ",height=" + height + ", top=" + y + ", left=" + x);
	terms.focus();
}
function newWindow(openner)	{
	var width = 460;
	var height = 500;
	var screenX = screen.width
	var screenY = screen.height

	var x = (screenX - width)/2;
	var y = (screenY - height)/3;

	var terms = window.open(openner,"terms","status=no,scrollbars=yes,resizable=no,location=no,toolbar=no,menubar=no,width=" + width + ",height=" + height + ", top=" + y + ", left=" + x);
	terms.focus();
}
-->