// JavaScript Document
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=no,resizable=no,menubar=no,status=no,directories=no,location=no');
}

function closeWin(){
	window.close();
}