var defaultEmptyOK = false; var whitespace = " \t\n\r"; function doElementMouseOut(currentPage,imageSource) { var swapImage = "images/"+imageSource+"_off.gif"; var swapCurrentImage = "images/"+currentPage+"_on.gif"; MM_swapImgRestore(); if(currentPage!='none'){MM_swapImage(currentPage,'',swapCurrentImage,1); } if(currentPage != imageSource){MM_swapImage(imageSource,'',swapImage,1);} } function doElementMouseOver(currentPage,imageSource) { var swapImage = "images/"+imageSource+"_on.gif"; var swapCurrentImage = "images/"+currentPage+"_off.gif"; if(currentPage != imageSource) { MM_swapImage(currentPage,'',swapCurrentImage,1); } MM_swapImage(imageSource,'',swapImage,1); } function MM_findObj(n, d) { //v4.0 var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) { d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);} if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i= sLength) || (s.charAt(i) != "@")) return false; else i += 2; while ((i < sLength) && (s.charAt(i) != ".")) { i++ } if ((i >= sLength - 1) || (s.charAt(i) != ".")) return false; else return true; } function isEmpty(s) { return ((s == null) || (s.length == 0)); } function isWhitespace (s) { var i; if (isEmpty(s)) return true; for (i = 0; i < s.length; i++) { var c = s.charAt(i); if (whitespace.indexOf(c) == -1) return false; } return true; }