function disclosureWin(url) {
	// Set the window height to 200 pixels less than screen height
	//screen.height-200;
	winH = 500;
	winW = 700;
	winTop= (screen.height/2)-((winH/2)+35);
	winLeft=(screen.width/2)-(winW/2);
	// Open the window without the web controls (address bar, toolbar, etc.)
	window.open(url, 'disclosure', 'width='+winW+',height='+winH+',top='+winTop+',left='+winLeft+',toolbar=no,scrollbars=yes,resizable=no,menubar=no,status=no,directories=no,location=no');
}

function closeWin(){
	window.close();
}

function privacyWin(url) {
	// Set the window height to 200 pixels less than screen height
	//screen.height-200;
	winH = screen.height * 0.85;
	winW = screen.width * 0.85;
	winTop = (screen.height / 2) - (winH / 2);
	winLeft = (screen.width / 2) - (winW / 2);
	// Open the window without the web controls (address bar, toolbar, etc.)
	window.open(url, 'disclosure', 'width=' + winW + ',height=' + winH + ',top=' + winTop + ',left=' + winLeft + ',toolbar=no,scrollbars=yes,resizable=no,menubar=no,status=no,directories=no,location=no');
}
