// special_functions.js
function MM_controlShockwave(objStr,x,cmdName,frameNum) { //v3.0
  var obj=MM_findObj(objStr);
  if (obj) eval('obj.'+cmdName+'('+((cmdName=='GotoFrame')?frameNum:'')+')');
}
// Functions that are specific to single pages (mainly include jsp files) are moved here to facilitate the Java script move to external file
function openPopupExtraParams(name, url, height, width, menubar, location, toolbar, scrollbars, status, resizable){
	var tmpPopup; var strProperties = "menubar=" + menubar + ",location=" + location + ",toolbar=" + toolbar + ",scrollbars=" + scrollbars + ",status=" + status + ",resizable=" + resizable + ",width=" + width + ",height=" + height + ",left=0, top=0";
	tmpPopup = window.open(url, name, strProperties); tmpPopup.focus();
}
function openPopup(name, url, height, width, menubar, location, toolbar, scrollbars, status, resizable){
	var tmpPopup; var strProperties = "menubar=" + menubar + ",location=" + location + ",toolbar=" + toolbar + ",scrollbars=" + scrollbars + ",status=" + status + ",resizable=" + resizable + ",width=" + width + ",height=" + height + ",left=0, top=0";
	tmpPopup = window.open(url, name, strProperties); tmpPopup.focus();
}
function openWindow(url, name, width, height) {popupWin = window.open(url, name, "resizable=no,location=no,scrollbars=yes,width="+width+",height="+height); 
}
