// JavaScript Document
function openWindow(content, width, height) {
	var aclWindow = window.open(content,'aclWin','width='+width+', height='+height+', scrollbars=no, resizable=no');
	aclWindow.focus();
}


