var dp={sh:{Toolbar:{},Utils:{},RegexLib:{},Brushes:{},Strings:{AboutDialog:'<html><head><title>About...</title></head><body class="dp-about"><table cellspacing="0"><tr><td class="copy"><p class="title">dp.SyntaxHighlighter</div><div class="para">Version: {V}</p><p><a href="http://www.dreamprojections.com/syntaxhighlighter/?ref=about" target="_blank">http://www.dreamprojections.com/syntaxhighlighter</a></p>&copy;2004-2008 Alex Gorbatchev.</td></tr><tr><td class="footer"><input type="button" class="close" value="OK" onClick="window.close()"/></td></tr></table></body></html>'},ClipboardSwf:null,Version:"1.5.2"}};dp.SyntaxHighlighter=dp.sh;dp.sh.Toolbar.Commands={ExpandSource:{label:"+ expand source",check:function(a){return a.collapse},func:function(b,a){b.parentNode.removeChild(b);a.div.className=a.div.className.replace("collapsed","")}},ViewSource:{label:"view plain",func:function(b,a){var d=dp.sh.Utils.FixForBlogger(a.originalCode).replace(/</g,"&lt;");var c=window.open("","_blank","width=750, height=400, location=0, resizable=1, menubar=0, scrollbars=0");c.document.write('<textarea style="width:99%;height:99%">'+d+"</textarea>");c.document.close()}},CopyToClipboard:{label:"copy to clipboard",check:function(){return window.clipboardData!=null||dp.sh.ClipboardSwf!=null},func:function(b,a){var d=dp.sh.Utils.FixForBlogger(a.originalCode).replace(/&lt;/g,"<").replace(/&gt;/g,">").replace(/&amp;/g,"&");if(window.clipboardData){window.clipboardData.setData("text",d)}else{if(dp.sh.ClipboardSwf!=null){var c=a.flashCopier;if(c===null){c=document.createElement("div");a.flashCopier=c;a.div.appendChild(c)}c.innerHTML='<embed src="'+dp.sh.ClipboardSwf+'" FlashVars="clipboard='+encodeURIComponent(d)+'" width="0" height="0" type="application/x-shockwave-flash"></embed>'}}alert("The code is in your clipboard now")}},PrintSource:{label:"print",func:function(b,a){var c=document.createElement("IFRAME");var d=null;c.style.cssText="position:absolute;width:0px;height:0px;left:-500px;top:-500px;";document.body.appendChild(c);d=c.contentWindow.document;dp.sh.Utils.CopyStyles(d,window.document);d.write('<div class="'+a.div.className.replace("collapsed","")+' printing">'+a.div.innerHTML+"</div>");d.close();c.contentWindow.focus();c.contentWindow.print();alert("Printing...");document.body.removeChild(c)}},About:{label:"?",func:function(a){var b=window.open("","_blank","dialog,width=300,height=150,scrollbars=0");var c=b.document;dp.sh.Utils.CopyStyles(c,window.document);c.write(dp.sh.Strings.AboutDialog.replace("{V}",dp.sh.Version));c.close();b.focus()}}};dp.sh.Toolbar.Create=function(b){var d=document.createElement("DIV");d.className="tools";for(var a in dp.sh.Toolbar.Commands){var c=dp.sh.Toolbar.Commands[a];if(c.check!=null&&!c.check(b)){continue}d.innerHTML+='<a href="#" onclick="dp.sh.Toolbar.Command(\''+a+"',this);return false;\">"+c.label+"</a>"}return d};dp.sh.Toolbar.Command=function(a,b){var c=b;while(c!=null&&c.className.indexOf("dp-highlighter")==-1){c=c.parentNode}if(c!=null){dp.sh.Toolbar.Commands[a].func(b,c.highlighter)}};dp.sh.Utils.CopyStyles=function(a,d){var b=d.getElementsByTagName("link");for(var c=0;c<b.length;c++){if(b[c].rel.toLowerCase()=="stylesheet"){a.write('<link type="text/css" rel="stylesheet" href="'+b[c].href+'"></link>')}}};dp.sh.Utils.FixForBlogger=function(a){return(dp.sh.isBloggerMode==true)?a.replace(/<br\s*\/?>|&lt;br\s*\/?&gt;/gi,"\n"):a};dp.sh.RegexLib={MultiLineCComments:new RegExp("/\\*[\\s\\S]*?\\*/","gm"),SingleLineCComments:new RegExp("//.*$","gm"),SingleLinePerlComments:new RegExp("#.*$","gm"),DoubleQuotedString:new RegExp('"(?:\\.|(\\\\\\")|[^\\""\\n])*"',"g"),SingleQuotedString:new RegExp("'(?:\\.|(\\\\\\')|[^\\''\\n])*'","g")};dp.sh.Match=function(c,a,b){this.value=c;this.index=a;this.length=c.length;this.css=b};dp.sh.Highlighter=function(){this.noGutter=false;this.addControls=true;this.collapse=false;this.tabsToSpaces=true;this.wrapColumn=80;this.showColumns=true};dp.sh.Highlighter.SortCallback=function(b,a){if(b.index<a.index){return -1}else{if(b.index>a.index){return 1}else{if(b.length<a.length){return -1}else{if(b.length>a.length){return 1}}}}return 0};dp.sh.Highlighter.prototype.CreateElement=function(b){var a=document.createElement(b);a.highlighter=this;return a};dp.sh.Highlighter.prototype.GetMatches=function(d,c){var b=0;var a=null;while((a=d.exec(this.code))!=null){this.matches[this.matches.length]=new dp.sh.Match(a[0],a.index,c)}};dp.sh.Highlighter.prototype.AddBit=function(e,c){if(e===null||e.length===0){return}var d=this.CreateElement("SPAN");e=e.replace(/ /g,"&nbsp;");e=e.replace(/</g,"&lt;");e=e.replace(/\n/gm,"&nbsp;<br>");if(c!=null){if((/br/gi).test(e)){var a=e.split("&nbsp;<br>");for(var b=0;b<a.length;b++){d=this.CreateElement("SPAN");d.className=c;d.innerHTML=a[b];this.div.appendChild(d);if(b+1<a.length){this.div.appendChild(this.CreateElement("BR"))}}}else{d.className=c;d.innerHTML=e;this.div.appendChild(d)}}else{d.innerHTML=e;this.div.appendChild(d)}};dp.sh.Highlighter.prototype.IsInside=function(a){if(a===null||a.length===0){return false}for(var b=0;b<this.matches.length;b++){var d=this.matches[b];if(d===null){continue}if((a.index>d.index)&&(a.index<d.index+d.length)){return true}}return false};dp.sh.Highlighter.prototype.ProcessRegexList=function(){for(var a=0;a<this.regexList.length;a++){this.GetMatches(this.regexList[a].regex,this.regexList[a].css)}};dp.sh.Highlighter.prototype.ProcessSmartTabs=function(f){var b=f.split("\n");var a="";var g=4;var d="\t";function h(j,p,n){var o=j.substr(0,p);var m=j.substr(p+1,j.length);var k="";for(var l=0;l<n;l++){k+=" "}return o+k+m}function e(i,k){if(i.indexOf(d)==-1){return i}var l=0;while((l=i.indexOf(d))!=-1){var j=k-l%k;i=h(i,l,j)}return i}for(var c=0;c<b.length;c++){a+=e(b[c],g)+"\n"}return a};dp.sh.Highlighter.prototype.SwitchToList=function(){var e=this.div.innerHTML.replace(/<(br)\/?>/gi,"\n");var b=e.split("\n");if(this.addControls==true){this.bar.appendChild(dp.sh.Toolbar.Create(this))}if(this.showColumns){var h=this.CreateElement("div");var d=this.CreateElement("div");var g=10;var c=1;while(c<=150){if(c%g===0){h.innerHTML+=c;c+=(c+"").length}else{h.innerHTML+="&middot;";c++}}d.className="cumns";d.appendChild(h);this.bar.appendChild(d)}for(var c=0;c<b.length-1;c++){var a=this.CreateElement("LI");var f=this.CreateElement("SPAN");a.className=(c%2===0)?"alt":"";f.innerHTML=b[c]+"&nbsp;";a.appendChild(f);this.ol.appendChild(a)}this.div.innerHTML=""};dp.sh.Highlighter.prototype.Highlight=function(d){function f(i){return i.replace(/^\s*(.*?)[\s\n]*$/g,"$1")}function g(i){return i.replace(/\n*$/,"").replace(/^\n*/,"")}function b(p){var j=dp.sh.Utils.FixForBlogger(p).split("\n");var o=new Array();var m=new RegExp("^\\s*","g");var l=1000;for(var k=0;k<j.length&&l>0;k++){if(f(j[k]).length===0){continue}var n=m.exec(j[k]);if(n!=null&&n.length>0){l=Math.min(n[0].length,l)}}if(l>0){for(var k=0;k<j.length;k++){j[k]=j[k].substr(l)}}return j.join("\n")}function e(i,k,j){return i.substr(k,j-k)}var h=0;if(d===null){d=""}this.originalCode=d;this.code=g(b(d));this.div=this.CreateElement("DIV");this.bar=this.CreateElement("DIV");this.ol=this.CreateElement("OL");this.matches=new Array();this.div.className="dp-highlighter";this.div.highlighter=this;this.bar.className="bar";if(this.firstLine!=null){this.ol.start=this.firstLine}if(this.CssClass!=null){this.ol.className=this.CssClass}if(this.collapse){this.div.className+=" collapsed"}if(this.noGutter){this.div.className+=" nogutter"}if(this.tabsToSpaces==true){this.code=this.ProcessSmartTabs(this.code)}this.ProcessRegexList();if(this.matches.length===0){this.AddBit(this.code,null);this.SwitchToList();this.div.appendChild(this.bar);this.div.appendChild(this.ol);return}this.matches=this.matches.sort(dp.sh.Highlighter.SortCallback);for(var c=0;c<this.matches.length;c++){if(this.IsInside(this.matches[c])){this.matches[c]=null}}for(var c=0;c<this.matches.length;c++){var a=this.matches[c];if(a===null||a.length===0){continue}this.AddBit(e(this.code,h,a.index),null);this.AddBit(a.value,a.css);h=a.index+a.length}this.AddBit(this.code.substr(h),null);this.SwitchToList();this.div.appendChild(this.bar);this.div.appendChild(this.ol)};dp.sh.Highlighter.prototype.GetKeywords=function(a){return"\\b"+a.replace(/ /g,"\\b|\\b")+"\\b"};dp.sh.BloggerMode=function(){dp.sh.isBloggerMode=true};dp.sh.HighlightAll=function(x,v,t,p,e,a){function h(){var y=arguments;for(var z=0;z<y.length;z++){if(y[z]===null){continue}if(typeof(y[z])=="string"&&y[z]!=""){return y[z]+""}if(typeof(y[z])=="object"&&y[z].value!=""){return y[z].value+""}}return null}function r(A,z){for(var y=0;y<z.length;y++){if(z[y]==A){return true}}return false}function k(z,D,y){var B=new RegExp("^"+z+"\\[(\\w+)\\]$","gi");var C=null;for(var A=0;A<D.length;A++){if((C=B.exec(D[A]))!=null){return C[1]}}return y}function m(C,z,B){var y=document.getElementsByTagName(B);for(var A=0;A<y.length;A++){if(y[A].getAttribute("name")==z){C.push(y[A])}}}var f=[];var w=null;var u={};var g="innerHTML";m(f,x,"pre");m(f,x,"textarea");if(f.length===0){return}for(var c in dp.sh.Brushes){var o=dp.sh.Brushes[c].Aliases;if(o===null){continue}for(var n=0;n<o.length;n++){u[o[n]]=c}}for(var n=0;n<f.length;n++){var b=f[n];var d=h(b.attributes["class"],b.className,b.attributes.language,b.language);var l="";if(d===null){continue}d=d.split(":");l=d[0].toLowerCase();if(u[l]===null){continue}w=new dp.sh.Brushes[u[l]]();b.style.display="none";if(typeof(v)==="undefined"){w.noGutter=r("nogutter",d)}else{w.noGutter=!v}if(typeof(t)==="undefined"){w.addControls=!r("nocontrols",d)}else{w.addControls=t}if(typeof(p)==="undefined"){w.collapse=r("collapse",d)}else{w.collapse=p}if(typeof(a)==="undefined"){w.showColumns=r("showcolumns",d)}else{w.showColumns=a}var q=document.getElementsByTagName("head")[0];if(w.Style&&q){var s=document.createElement("style");s.setAttribute("type","text/css");if(s.styleSheet){s.styleSheet.cssText=w.Style}else{var j=document.createTextNode(w.Style);s.appendChild(j)}q.appendChild(s)}w.firstLine=(e===null)?parseInt(k("firstline",d,1)):e;w.Highlight(b[g]);w.source=b;b.parentNode.insertBefore(w.div,b)}};dp.sh.Brushes.JScript=function(){var a="abstract boolean break byte case catch char class const continue debugger default delete do double else enum export extends false final finally float for function goto if implements import in instanceof int interface long native new null package private protected public return short static super switch synchronized this throw throws transient true try typeof var void volatile while with";this.regexList=[{regex:dp.sh.RegexLib.SingleLineCComments,css:"comment"},{regex:dp.sh.RegexLib.MultiLineCComments,css:"comment"},{regex:dp.sh.RegexLib.DoubleQuotedString,css:"string"},{regex:dp.sh.RegexLib.SingleQuotedString,css:"string"},{regex:new RegExp("^\\s*#.*","gm"),css:"preprocessor"},{regex:new RegExp(this.GetKeywords(a),"gm"),css:"keyword"}];this.CssClass="dp-c"};dp.sh.Brushes.JScript.prototype=new dp.sh.Highlighter();dp.sh.Brushes.JScript.Aliases=["js","jscript","javascript"];dp.sh.Brushes.CSS=function(){var b="ascent azimuth background-attachment background-color background-image background-position background-repeat background baseline bbox border-collapse border-color border-spacing border-style border-top border-right border-bottom border-left border-top-color border-right-color border-bottom-color border-left-color border-top-style border-right-style border-bottom-style border-left-style border-top-width border-right-width border-bottom-width border-left-width border-width border cap-height caption-side centerline clear clip color content counter-increment counter-reset cue-after cue-before cue cursor definition-src descent direction display elevation empty-cells float font-size-adjust font-family font-size font-stretch font-style font-variant font-weight font height letter-spacing line-height list-style-image list-style-position list-style-type list-style margin-top margin-right margin-bottom margin-left margin marker-offset marks mathline max-height max-width min-height min-width orphans outline-color outline-style outline-width outline overflow padding-top padding-right padding-bottom padding-left padding page page-break-after page-break-before page-break-inside pause pause-after pause-before pitch pitch-range play-during position quotes richness size slope src speak-header speak-numeral speak-punctuation speak speech-rate stemh stemv stress table-layout text-align text-decoration text-indent text-shadow text-transform unicode-bidi unicode-range units-per-em vertical-align visibility voice-family volume white-space widows width widths word-spacing x-height z-index";var a="above absolute all always aqua armenian attr aural auto avoid baseline behind below bidi-override black blink block blue bold bolder both bottom braille capitalize caption center center-left center-right circle close-quote code collapse compact condensed continuous counter counters crop cross crosshair cursive dashed decimal decimal-leading-zero default digits disc dotted double embed embossed e-resize expanded extra-condensed extra-expanded fantasy far-left far-right fast faster fixed format fuchsia gray green groove handheld hebrew help hidden hide high higher icon inline-table inline inset inside invert italic justify landscape large larger left-side left leftwards level lighter lime line-through list-item local loud lower-alpha lowercase lower-greek lower-latin lower-roman lower low ltr marker maroon medium message-box middle mix move narrower navy ne-resize no-close-quote none no-open-quote no-repeat normal nowrap n-resize nw-resize oblique olive once open-quote outset outside overline pointer portrait pre print projection purple red relative repeat repeat-x repeat-y rgb ridge right right-side rightwards rtl run-in screen scroll semi-condensed semi-expanded separate se-resize show silent silver slower slow small small-caps small-caption smaller soft solid speech spell-out square s-resize static status-bar sub super sw-resize table-caption table-cell table-column table-column-group table-footer-group table-header-group table-row table-row-group teal text-bottom text-top thick thin top transparent tty tv ultra-condensed ultra-expanded underline upper-alpha uppercase upper-latin upper-roman url visible wait white wider w-resize x-fast x-high x-large x-loud x-low x-slow x-small x-soft xx-large xx-small yellow";var c="[mM]onospace [tT]ahoma [vV]erdana [aA]rial [hH]elvetica [sS]ans-serif [sS]erif";this.regexList=[{regex:dp.sh.RegexLib.MultiLineCComments,css:"comment"},{regex:dp.sh.RegexLib.DoubleQuotedString,css:"string"},{regex:dp.sh.RegexLib.SingleQuotedString,css:"string"},{regex:new RegExp("\\#[a-zA-Z0-9]{3,6}","g"),css:"value"},{regex:new RegExp("(-?\\d+)(.\\d+)?(px|em|pt|:|%|)","g"),css:"value"},{regex:new RegExp("!important","g"),css:"important"},{regex:new RegExp(this.GetKeywordsCSS(b),"gm"),css:"keyword"},{regex:new RegExp(this.GetValuesCSS(a),"g"),css:"value"},{regex:new RegExp(this.GetValuesCSS(c),"g"),css:"value"}];this.CssClass="dp-css";this.Style=".dp-css .value { color: black; }.dp-css .important { color: red; }"};dp.sh.Highlighter.prototype.GetKeywordsCSS=function(a){return"\\b([a-z_]|)"+a.replace(/ /g,"(?=:)\\b|\\b([a-z_\\*]|\\*|)")+"(?=:)\\b"};dp.sh.Highlighter.prototype.GetValuesCSS=function(a){return"\\b"+a.replace(/ /g,"(?!-)(?!:)\\b|\\b()")+":\\b"};dp.sh.Brushes.CSS.prototype=new dp.sh.Highlighter();dp.sh.Brushes.CSS.Aliases=["css"];dp.sh.Brushes.AS3=function(){var b="class interface package";var a="Array Boolean Date decodeURI decodeURIComponent encodeURI encodeURIComponent escape int isFinite isNaN isXMLName Number Object parseFloat parseInt String trace uint unescape XML XMLList Infinity -Infinity NaN undefined as delete instanceof is new typeof break case catch continue default do each else finally for if in label return super switch throw try while with dynamic final internal native override private protected public static ...rest const extends function get implements namespace set import include use AS3 flash_proxy object_proxy false null this true void Null";this.regexList=[{regex:dp.sh.RegexLib.SingleLineCComments,css:"comment"},{regex:dp.sh.RegexLib.MultiLineCComments,css:"blockcomment"},{regex:dp.sh.RegexLib.DoubleQuotedString,css:"string"},{regex:dp.sh.RegexLib.SingleQuotedString,css:"string"},{regex:new RegExp("^\\s*#.*","gm"),css:"preprocessor"},{regex:new RegExp(this.GetKeywords(b),"gm"),css:"definition"},{regex:new RegExp(this.GetKeywords(a),"gm"),css:"keyword"},{regex:new RegExp("var","gm"),css:"variable"}];this.CssClass="dp-as";this.Style=".dp-as .comment { color: #009900; font-style: italic; }.dp-as .blockcomment { color: #3f5fbf; }.dp-as .string { color: #990000; }.dp-as .preprocessor { color: #0033ff; }.dp-as .definition { color: #9900cc; font-weight: bold; }.dp-as .keyword { color: #0033ff; }.dp-as .variable { color: #6699cc; font-weight: bold; }"};dp.sh.Brushes.AS3.prototype=new dp.sh.Highlighter();dp.sh.Brushes.AS3.Aliases=["as","actionscript","ActionScript","as3","AS3"];dp.sh.Brushes.Xml=function(){this.CssClass="dp-xml";this.Style=".dp-xml .cdata { color: #ff1493; }.dp-xml .tag, .dp-xml .tag-name { color: #069; font-weight: bold; }.dp-xml .attribute { color: red; }.dp-xml .attribute-value { color: blue; }"};dp.sh.Brushes.Xml.prototype=new dp.sh.Highlighter();dp.sh.Brushes.Xml.Aliases=["xml","xhtml","xslt","html","xhtml"];dp.sh.Brushes.Xml.prototype.ProcessRegexList=function(){function c(f,e){f[f.length]=e}var b=0;var a=null;var d=null;this.GetMatches(new RegExp("(&lt;|<)\\!\\[[\\w\\s]*?\\[(.|\\s)*?\\]\\](&gt;|>)","gm"),"cdata");this.GetMatches(new RegExp("(&lt;|<)!--\\s*.*?\\s*--(&gt;|>)","gm"),"comments");d=new RegExp("([:\\w-.]+)\\s*=\\s*(\".*?\"|'.*?'|\\w+)*|(\\w+)","gm");while((a=d.exec(this.code))!=null){if(a[1]==null){continue}c(this.matches,new dp.sh.Match(a[1],a.index,"attribute"));if(a[2]!=undefined){c(this.matches,new dp.sh.Match(a[2],a.index+a[0].indexOf(a[2]),"attribute-value"))}}this.GetMatches(new RegExp("(&lt;|<)/*\\?*(?!\\!)|/*\\?*(&gt;|>)","gm"),"tag");d=new RegExp("(?:&lt;|<)/*\\?*\\s*([:\\w-.]+)","gm");while((a=d.exec(this.code))!=null){c(this.matches,new dp.sh.Match(a[1],a.index+a[0].indexOf(a[1]),"tag-name"))}};dp.sh.Brushes.Java=function(){var a="abstract assert boolean break byte case catch char class const continue default do double else enum extends false final finally float for goto if implements import instanceof int interface long native new null package private protected public return short static strictfp super switch synchronized this throw throws true transient try void volatile while";this.regexList=[{regex:dp.sh.RegexLib.SingleLineCComments,css:"comment"},{regex:dp.sh.RegexLib.MultiLineCComments,css:"comment"},{regex:dp.sh.RegexLib.DoubleQuotedString,css:"string"},{regex:dp.sh.RegexLib.SingleQuotedString,css:"string"},{regex:new RegExp("\\b([\\d]+(\\.[\\d]+)?|0x[a-f0-9]+)\\b","gi"),css:"number"},{regex:new RegExp("(?!\\@interface\\b)\\@[\\$\\w]+\\b","g"),css:"annotation"},{regex:new RegExp("\\@interface\\b","g"),css:"keyword"},{regex:new RegExp(this.GetKeywords(a),"gm"),css:"keyword"}];this.CssClass="dp-j";this.Style=".dp-j .annotation { color: #646464; }.dp-j .number { color: #C00000; }"};dp.sh.Brushes.Java.prototype=new dp.sh.Highlighter();dp.sh.Brushes.Java.Aliases=["java"];dp.sh.Brushes.Python=function(){var b="and assert break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return try yield while";var a="None True False self cls class_";this.regexList=[{regex:dp.sh.RegexLib.SingleLinePerlComments,css:"comment"},{regex:new RegExp("^\\s*@\\w+","gm"),css:"decorator"},{regex:new RegExp("(['\"]{3})([^\\1])*?\\1","gm"),css:"comment"},{regex:new RegExp('"(?!")(?:\\.|\\\\\\"|[^\\""\\n\\r])*"',"gm"),css:"string"},{regex:new RegExp("'(?!')(?:\\.|(\\\\\\')|[^\\''\\n\\r])*'","gm"),css:"string"},{regex:new RegExp("\\b\\d+\\.?\\w*","g"),css:"number"},{regex:new RegExp(this.GetKeywords(b),"gm"),css:"keyword"},{regex:new RegExp(this.GetKeywords(a),"gm"),css:"special"}];this.CssClass="dp-py";this.Style=".dp-py .builtins { color: #ff1493; }.dp-py .magicmethods { color: #808080; }.dp-py .exceptions { color: brown; }.dp-py .types { color: brown; font-style: italic; }.dp-py .commonlibs { color: #8A2BE2; font-style: italic; }"};dp.sh.Brushes.Python.prototype=new dp.sh.Highlighter();dp.sh.Brushes.Python.Aliases=["py","python"];dp.sh.Brushes.Php=function(){var a="abs acos acosh addcslashes addslashes array_change_key_case array_chunk array_combine array_count_values array_diff array_diff_assoc array_diff_key array_diff_uassoc array_diff_ukey array_fill array_filter array_flip array_intersect array_intersect_assoc array_intersect_key array_intersect_uassoc array_intersect_ukey array_key_exists array_keys array_map array_merge array_merge_recursive array_multisort array_pad array_pop array_product array_push array_rand array_reduce array_reverse array_search array_shift array_slice array_splice array_sum array_udiff array_udiff_assoc array_udiff_uassoc array_uintersect array_uintersect_assoc array_uintersect_uassoc array_unique array_unshift array_values array_walk array_walk_recursive atan atan2 atanh base64_decode base64_encode base_convert basename bcadd bccomp bcdiv bcmod bcmul bindec bindtextdomain bzclose bzcompress bzdecompress bzerrno bzerror bzerrstr bzflush bzopen bzread bzwrite ceil chdir checkdate checkdnsrr chgrp chmod chop chown chr chroot chunk_split class_exists closedir closelog copy cos cosh count count_chars date decbin dechex decoct deg2rad delete ebcdic2ascii echo empty end ereg ereg_replace eregi eregi_replace error_log error_reporting escapeshellarg escapeshellcmd eval exec exit exp explode extension_loaded feof fflush fgetc fgetcsv fgets fgetss file_exists file_get_contents file_put_contents fileatime filectime filegroup fileinode filemtime fileowner fileperms filesize filetype floatval flock floor flush fmod fnmatch fopen fpassthru fprintf fputcsv fputs fread fscanf fseek fsockopen fstat ftell ftok getallheaders getcwd getdate getenv gethostbyaddr gethostbyname gethostbynamel getimagesize getlastmod getmxrr getmygid getmyinode getmypid getmyuid getopt getprotobyname getprotobynumber getrandmax getrusage getservbyname getservbyport gettext gettimeofday gettype glob gmdate gmmktime ini_alter ini_get ini_get_all ini_restore ini_set interface_exists intval ip2long is_a is_array is_bool is_callable is_dir is_double is_executable is_file is_finite is_float is_infinite is_int is_integer is_link is_long is_nan is_null is_numeric is_object is_readable is_real is_resource is_scalar is_soap_fault is_string is_subclass_of is_uploaded_file is_writable is_writeable mkdir mktime nl2br parse_ini_file parse_str parse_url passthru pathinfo readlink realpath rewind rewinddir rmdir round str_ireplace str_pad str_repeat str_replace str_rot13 str_shuffle str_split str_word_count strcasecmp strchr strcmp strcoll strcspn strftime strip_tags stripcslashes stripos stripslashes stristr strlen strnatcasecmp strnatcmp strncasecmp strncmp strpbrk strpos strptime strrchr strrev strripos strrpos strspn strstr strtok strtolower strtotime strtoupper strtr strval substr substr_compare";var b="and or xor __FILE__ __LINE__ array as break case cfunction class const continue declare default die do else elseif empty enddeclare endfor endforeach endif endswitch endwhile extends for foreach function include include_once global if new old_function return static switch use require require_once var while __FUNCTION__ __CLASS__ __METHOD__ abstract interface public implements extends private protected throw";this.regexList=[{regex:dp.sh.RegexLib.SingleLineCComments,css:"comment"},{regex:dp.sh.RegexLib.SingleLinePerlComments,css:"comment"},{regex:dp.sh.RegexLib.MultiLineCComments,css:"comment"},{regex:dp.sh.RegexLib.DoubleQuotedString,css:"string"},{regex:dp.sh.RegexLib.SingleQuotedString,css:"string"},{regex:new RegExp("\\$\\w+","g"),css:"vars"},{regex:new RegExp(this.GetKeywords(a),"gmi"),css:"func"},{regex:new RegExp(this.GetKeywords(b),"gm"),css:"keyword"}];this.CssClass="dp-c"};dp.sh.Brushes.Php.prototype=new dp.sh.Highlighter();dp.sh.Brushes.Php.Aliases=["php"];