openWindows = new Array(); function cobaltOpenNewWindow(url,window_name,features) { if (!(openWindows[window_name] && !openWindows[window_name].closed)) { if (features == "") { features = "toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes"; } openWindows[window_name] = window.open(url,window_name,features); } openWindows[window_name].focus(); } function moveToNextPage() { browserName = navigator.appName.charAt(0); if (browserName == "N"){ history.forward(); } else if (browserName == "M") { parent.history.go(1); } } function moveToPreviousPage() { browserName = navigator.appName.charAt(0); if (browserName == "N"){ history.back(); } else if (browserName == "M") { parent.history.go(-1); } } function closeSelfWin() { window.close(); } function closeTargetWindow(window_name) { if (openWindows[window_name] && !openWindows[window_name].closed) { openWindows[window_name].close(); } else { return; } } // changePage.js turushid 1.1 02/01/16 for Version Control