// JavaScript Document
function displayHelpWindow(url, width, height) {
		randStr = Math.random().toString();
		winName = "displayHelpWindowName" + randStr.substr(2,randStr.length);
        window.open(url,winName,'width=' + width + ',height=' + height + ',resizable=no,scrollbars=no,menubar=yes,status=0,toolbar=no');
}
