function domIt() {
	if (!document.getElementsByTagName) return;
		var anchors = document.getElementsByTagName("a");
		for (var i=0; i<anchors .length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") {
		anchor.target = "_blank";
		anchor.title = (anchor.title != "") ? anchor.title+" (opens in a new window)" : "opens in a new window";
		anchor.className = (anchor.className != '') ? anchor.className+' external' : 'external';
		}
		if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "popup") {
			anchor.onclick = function() {
				var pictitle = escape(this.title.replace(" (opens in a popup window)",""));
				//url = escape(this.getAttribute("href"));
				url = this.getAttribute("href");
				window.open(url,'popup','width=760,height=480,resizable=yes,scrollbars=yes');
				return false;
			  }
			anchor.title = (anchor.title != "") ? anchor.title+" (opens in a popup window)" : "opens in a popup window";
		}
	}
	//End anchors
	/*var hr = document.getElementsByTagName("hr");
	for (var i=0; i<hr.length; i++) {
		var newhr = hr[i];
		var wrapdiv = document.createElement('div');
		wrapdiv.className = 'hr';
		newhr.parentNode.replaceChild(wrapdiv, newhr);
		wrapdiv.appendChild(newhr);
	}*/
}

/*	dynamicCSS.js v1.0 <http://www.bobbyvandersluis.com/articles/dynamicCSS.php>
	Copyright 2005 Bobby van der Sluis
	This software is licensed under the CC-GNU LGPL <http://creativecommons.org/licenses/LGPL/2.1/>
*/

function createStyleRule(selector, declaration) {
	if (!document.getElementsByTagName || !(document.createElement || document.createElementNS)) return;
	var agt = navigator.userAgent.toLowerCase();
	var is_ie = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));
	var is_iewin = (is_ie && (agt.indexOf("win") != -1));
	var is_iemac = (is_ie && (agt.indexOf("mac") != -1));
	if (is_iemac) return; // script doesn't work properly in IE/Mac
	var head = document.getElementsByTagName("head")[0]; 
	var style = (typeof document.createElementNS != "undefined") ?  document.createElementNS("http://www.w3.org/1999/xhtml", "style") : document.createElement("style");
	if (!is_iewin) {
		var styleRule = document.createTextNode(selector + " {" + declaration + "}");
		style.appendChild(styleRule); // bugs in IE/Win
	}
	style.setAttribute("type", "text/css");
	style.setAttribute("media", "screen"); 
	head.appendChild(style);
	if (is_iewin && document.styleSheets && document.styleSheets.length > 0) {
		var lastStyle = document.styleSheets[document.styleSheets.length - 1];
		if (typeof lastStyle.addRule == "object") { // bugs in IE/Mac and Safari
			lastStyle.addRule(selector, declaration);
		}
	}
}

function cnt(w,x,sep){
	var y=w.value;
	var r = 0;
	a=y.replace(/\s/g,' ');
	a=a.split(sep);
	for (z=0; z<a.length; z++) {if (a[z].length > 0) r++;}
	x.value=r;
}

function findObj(n, d) { //v4.01
  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<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function changeProp(objName,x,theProp,theValue) { //v6.0
  var obj = findObj(objName);
  if (obj && (theProp.indexOf("style.")==-1 || obj.style)){
    if (theValue == true || theValue == false)
      eval("obj."+theProp+"="+theValue);
    else eval("obj."+theProp+"='"+theValue+"'");
  }
}
function setElementStyleByClassName(cl, propertyName, propertyValue) {
	if (!document.getElementsByTagName) return;
	var re = new RegExp("(^| )" + cl + "( |$)");
	var el = document.all ? document.all : document.getElementsByTagName("body")[0].getElementsByTagName("*"); // fix for IE5.x
	for (var i = 0; i < el.length; i++) {
		if (el[i].className && el[i].className.match(re)) {
			el[i].style[propertyName] = propertyValue;
		}
	}
}

function myUnobtrusiveBehavior() {
	setElementStyleByClassName("toggle", "display", "none"); // fallback for IE5/Mac
	setElementStyleByClassName("toggle", "display", "block");
}

function openCentWindow(theURL,scrollb,winWidth,winHeight) { //v2.0
	
	if (winWidth>screen.width){winWidth = screen.width;}
	if (winHeight>screen.height){winHeight = screen.height;}
	if (winWidth <= 0){winWidth = screen.width;}
	if (winHeight <= 0){winHeight = screen.height;}

	leftPos = 0; leftPos = screen.width/2 - winWidth/2; // centres window
	topPos = 0; topPos = screen.height/2 - winHeight/2;  // centres window
	
	modWindow = window.open(theURL,'modWin','toolbar=no,location=no,scrollbars='+scrollb+',resizable=yes,width='+winWidth+',height='+winHeight+',left='+leftPos+',top='+topPos+'');
	modWindow.focus();
}

function confirmSubmit() {
var agree=confirm("Are you sure you wish to continue?");
if (agree)
	return true ;
else
	return false ;
}

function submitform(theform) {
  if (!document.getElementById) return;
  var myform = document.getElementById(theform);
  myform.submit();
}


/******************************************************************************
Name:    Highslide JS
Version: 3.3.12 (Feb 29 2008)
Config:  default +unobtrusive +packed
Author:  Torstein Hønsi
Support: http://vikjavev.no/highslide/forum

Licence:
Highslide JS is licensed under a Creative Commons Attribution-NonCommercial 2.5
License (http://creativecommons.org/licenses/by-nc/2.5/).

You are free:
	* to copy, distribute, display, and perform the work
	* to make derivative works

Under the following conditions:
	* Attribution. You must attribute the work in the manner  specified by  the
	  author or licensor.
	* Noncommercial. You may not use this work for commercial purposes.

* For  any  reuse  or  distribution, you  must make clear to others the license
  terms of this work.
* Any  of  these  conditions  can  be  waived  if  you  get permission from the 
  copyright holder.

Your fair use and other rights are in no way affected by the above.
******************************************************************************/
eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('q k={4a:\'W/8x/\',4X:\'8o.5F\',6W:10,6Y:4g,6K:10,6L:4g,3M:15,6V:15,3N:15,2E:15,44:88,4P:\'4f O 1R 1z, 8f 5w 8k O 2j. 87 7Z 7Y S 1v 5w 5V.\',5x:\'8m...\',5X:\'4f O 8r\',5u:0.75,6h:\'4f O 8A O 8n\',5Y:J,5l:5,5m:1,4w:17,2d:2,4Z:3,6A:\'8w O 8l 3z\',6z:\'6I 6M\',6y:1,6a:J,6s:\'7S 24 <i>5J 5D</i>\',6t:\'7q://7u.7t/W/\',6l:\'7r O 7k 5J 5D 7b\',68:J,2T:F,3q:30,2P:F,2L:5I,2M:5I,3X:J,19:\'7R-7Q\',4c:\'W-G\',35:[],4u:J,E:[],4y:[\'3X\',\'19\',\'2d\',\'3q\',\'2T\',\'3c\',\'5q\',\'4c\',\'2L\',\'2M\',\'2P\',\'2O\',\'77\',\'6X\'],1H:[],3J:[],36:{},5h:{},1g:(T.7P&&!1q.3W),31:/7I/.1m(3g.5H),41:/7H.+7z:1\\.[0-8].+7y/.1m(3g.5H),$:u(1p){B T.7J(1p)},4M:u(2F,5A){2F[2F.14]=5A},11:u(5E,2G,2c,4C,5Z){q r=T.11(5E);m(2G)k.63(r,2G);m(5Z)k.1f(r,{8B:0,7o:\'4O\',6Z:0});m(2c)k.1f(r,2c);m(4C)4C.2k(r);B r},63:u(r,2G){S(q x 4H 2G)r[x]=2G[x]},1f:u(r,2c){S(q x 4H 2c){16{m(k.1g&&x==\'1d\')r.z.5L=(2c[x]==1)?\'\':\'7c(1d=\'+(2c[x]*2D)+\')\';Q r.z[x]=2c[x]}12(e){}}},2q:u(){q 2F=3g.71.7M("7K");B 2F[1]?5z(2F[1]):F},6T:u(){q 3u=T.5e&&T.5e!="6b"?T.4d:T.5s;q X=k.1g?3u.5N:(T.4d.5N||5U.7O),H=k.1g?3u.7T:5U.7E;B{X:X,H:H,3Y:k.1g?3u.3Y:7F,45:k.1g?3u.45:7C}},1c:u(r){q p={x:r.67,y:r.62};3b(r.5T){r=r.5T;p.x+=r.67;p.y+=r.62;m(r!=T.5s&&r!=T.4d){p.x-=r.3Y;p.y-=r.45}}B p},3p:u(a,1L,3h){m(a.3s)B 1L;16{3R k.42(a,1L,3h);B 17}12(e){B J}},4J:u(){q R=T.3i(\'A\');S(q i=0;i<R.14;i++){m(/^W$/.1m(R[i].5v)){R[i].2o=u(){B k.3p(f)};R[i].7A(\'5v\')}}m(!k.6c)1Y(k.4J,50)},60:u(){q 4b=0,3K=-1;S(q i=0;i<k.E.14;i++){m(k.E[i]){m(k.E[i].G.z.1l&&k.E[i].G.z.1l>4b){4b=k.E[i].G.z.1l;3K=i}}}m(3K==-1)k.1P=-1;Q k.E[3K].2V()},4e:u(L,1k){q 2W=T.3i(\'A\'),4r={},5p=-1,j=0;S(q i=0;i<2W.14;i++){m(k.3a(2W[i])&&((k.E[L].2P==k.5i(2W[i],\'2P\')))){4r[j]=2W[i];m(k.E[L]&&2W[i]==k.E[L].a){5p=j}j++}}B 4r[5p+1k]||F},5i:u(a,3r){a.3s=a.2o;q p=a.3s?a.3s():F;a.3s=F;B(p&&1s p[3r]!=\'2p\')?p[3r]:(1s k[3r]!=\'2p\'?k[3r]:F)},2Z:u(a){q 1i=k.5i(a,\'1i\');m(1i)B 1i;B a.2s},55:u(1p){q 3I=k.$(1p),2n=k.5h[1p],a={};m(!3I&&!2n)B F;m(!2n){2n=3I.5n(J);2n.1p=\'\';k.5h[1p]=2n;B 3I}Q{B 2n.5n(J)}},2J:u(d){m(!k.1g)B;q a=d.7f,i,l,n;m(a){l=a.14;S(q i=0;i<l;i+=1){n=a[i].2B;m(1s d[n]===\'u\'){d[n]=F}}}a=d.2Q;m(a){l=a.14;S(q i=0;i<l;i+=1){k.2J(d.2Q[i])}}},3P:u(r,1k){q C=k.7h=k.2I(r);16{q 64=k.7i=k.4e(C.L,1k);64.2o()}12(e){}16{C.1R()}12(e){}B 17},5V:u(r){B k.3P(r,-1)},1v:u(r){B k.3P(r,1)},3S:u(e){m(!e)e=1q.1r;m(!e.1S)e.1S=e.4q;m(e.1S.69)B J;q 1k=F;78(e.7a){1F 32:1F 34:1F 39:1F 40:1k=1;5g;1F 8:1F 33:1F 37:1F 38:1k=-1;5g;1F 27:1F 13:1k=0}m(1k!==F){k.3d(T,\'52\',k.3S);m(!k.68)B J;m(e.3Z)e.3Z();Q e.7l=17;m(1k==0){16{k.2I().1R()}12(e){}B 17}Q{B k.3P(k.1P,1k)}}B J},7n:u(1e){k.4M(k.1H,1e)},4U:u(4Q){q r,2e=/^W-G-([0-9]+)$/;r=4Q;3b(r.1W){m(r.1p&&2e.1m(r.1p))B r.1p.2H(2e,"$1");r=r.1W}r=4Q;3b(r.1W){m(r.3y&&k.3a(r)){S(q L=0;L<k.E.14;L++){q C=k.E[L];m(C&&C.a==r)B L}}r=r.1W}B F},2I:u(r){m(1s r==\'2p\')B k.E[k.1P]||F;m(1s r==\'2R\')B k.E[r]||F;m(1s r==\'59\')r=k.$(r);B k.E[k.4U(r)]||F},3a:u(a){B(a.2o&&a.2o.6r().2H(/\\s/g,\' \').26(/k.(8D|e)7U/))},6F:u(){S(q i=0;i<k.E.14;i++)m(k.E[i]&&k.E[i].43)k.60()},4m:u(e){m(!e)e=1q.1r;m(e.8u>1)B J;m(!e.1S)e.1S=e.4q;q r=e.1S;3b(r.1W&&!(/W-(1z|2j|5G|53)/.1m(r.Z))){r=r.1W}q C=k.2I(r);m(C&&(C.51||!C.43))B J;m(C&&e.2b==\'6H\'){m(e.1S.69)B J;q 26=r.Z.26(/W-(1z|2j|53)/);m(26){k.1A={C:C,2b:26[1],U:C.x.I,X:C.x.D,1a:C.y.I,H:C.y.D,5K:e.5y,65:e.66};k.29(T,\'5B\',k.57);m(e.3Z)e.3Z();m(/W-(1z|5G)-3j/.1m(C.N.Z)){C.2V();k.58=J}B 17}}Q m(e.2b==\'6Q\'){k.3d(T,\'5B\',k.57);m(k.1A){m(k.1A.2b==\'1z\')k.1A.C.N.z.1J=k.3l;q 2l=k.1A.2l;m(!2l&&!k.58&&!/(2j|53)/.1m(k.1A.2b)){C.1R()}Q m(2l||(!2l&&k.8s)){k.1A.C.4l()}k.58=17;k.1A=F}Q m(/W-1z-3j/.1m(r.Z)){r.z.1J=k.3l}}B 17},57:u(e){m(!k.1A)B J;m(!e)e=1q.1r;q a=k.1A,C=a.C;a.5a=e.5y-a.5K;a.56=e.66-a.65;q 4S=1w.8G(1w.5O(a.5a,2)+1w.5O(a.56,2));a.2l=(a.2b!=\'1z\'&&4S>0)||(4S>(k.8J||5));m(a.2l){C.2j(a)}B 17},29:u(r,1r,21){16{r.29(1r,21,17)}12(e){16{r.61(\'3m\'+1r,21);r.8E(\'3m\'+1r,21)}12(e){r[\'3m\'+1r]=21}}},3d:u(r,1r,21){16{r.3d(1r,21,17)}12(e){16{r.61(\'3m\'+1r,21)}12(e){r[\'3m\'+1r]=F}}},5f:u(i){m(k.4u&&k.35[i]&&k.35[i]!=\'2p\'){q Y=T.11(\'Y\');Y.4j=u(){k.5f(i+1)};Y.1i=k.35[i]}},6N:u(2R){m(2R&&1s 2R!=\'8C\')k.5l=2R;q a,2e,j=0;q 5d=T.3i(\'A\');S(q i=0;i<5d.14;i++){a=5d[i];2e=k.3a(a);m(2e&&2e[0]==\'k.3p\'){m(j<k.5l){k.35[j]=k.2Z(a);j++}}}3R k.3f(k.19,u(){k.5f(0)});q 5F=k.11(\'Y\',{1i:k.4a+k.4X})},4v:u(){m(!k.2A){k.2A=k.11(\'1K\',F,{1c:\'1Z\',U:0,1a:0,X:\'2D%\',1l:k.44},T.5s,J);k.1h=k.11(\'a\',{Z:\'W-1h\',2U:k.5X,1Q:k.5x,2s:\'6G:7W(0)\'},{1c:\'1Z\',1d:k.5u,U:\'-3e\',1l:1},k.2A);1w.7X=u(t,b,c,d){B c*t/d+b};1w.74=u(t,b,c,d){B c*(t/=d)*t+b}}},3E:u(r,o,2u,1V,i,3k){m(1s i==\'2p\'){m(1s 1V!=\'2R\')1V=4g;m(1V<25){k.1f(r,{1d:2u,18:(o<2u?\'1u\':\'P\')});B}i=k.3J.14;3k=2u>o?1:-1;q 2a=(25/(1V-1V%25))*1w.8h(o-2u)}o=5z(o);r.z.18=(o<=0)?\'P\':\'1u\';m(o<0||(3k==1&&o>2u))B;m(r.2v&&r.2v.i!=i){8g(k.3J[r.2v.i]);o=r.2v.o}r.2v={i:i,o:o,2a:(2a||r.2v.2a)};r.z.18=(o<=0)?\'P\':\'1u\';k.1f(r,{1d:o});k.3J[i]=1Y(u(){k.3E(r,o+r.2v.2a*3k,2u,F,i,3k)},25)},1R:u(r){16{k.2I(r).1R()}12(e){}B 17}};k.3f=u(19,2t){f.2t=2t;f.19=19;q v=k.2q(),3A;f.3G=k.1g&&v>=5.5&&v<7;m(!19){m(2t)2t();B}k.4v();f.1n=k.11(\'1n\',{8e:0},{18:\'P\',1c:\'1Z\',8a:\'89\'},k.2A,J);f.4E=k.11(\'4E\',F,F,f.1n,1);f.1b=[];S(q i=0;i<=8;i++){m(i%3==0)3A=k.11(\'3A\',F,{H:\'2X\'},f.4E,J);f.1b[i]=k.11(\'1b\',F,F,3A,J);q z=i!=4?{8d:0,8q:0}:{1c:\'4I\'};k.1f(f.1b[i],z)}f.1b[4].Z=19;f.5S()};k.3f.5C={5S:u(){q 1i=k.4a+(k.8c||"8j/")+f.19+".8i";q 5R=k.31?k.2A:F;f.23=k.11(\'Y\',F,{1c:\'1Z\',U:\'-3e\',1a:\'-3e\'},5R,J);q 5Q=f;f.23.4j=u(){5Q.5M()};f.23.1i=1i},5M:u(){q o=f.1C=f.23.X/4,1O=[[0,0],[0,-4],[-2,0],[0,-8],0,[-2,-8],[0,-2],[0,-6],[-2,-2]],48={H:(2*o)+\'K\',X:(2*o)+\'K\'};S(q i=0;i<=8;i++){m(1O[i]){m(f.3G){q w=(i==1||i==7)?\'2D%\':f.23.X+\'K\';q 1K=k.11(\'1K\',F,{X:\'2D%\',H:\'2D%\',1c:\'4I\',3H:\'P\'},f.1b[i],J);k.11(\'1K\',F,{5L:"7V:80.81.85(84=82, 1i=\'"+f.23.1i+"\')",1c:\'1Z\',X:w,H:f.23.H+\'K\',U:(1O[i][0]*o)+\'K\',1a:(1O[i][1]*o)+\'K\'},1K,J)}Q{k.1f(f.1b[i],{83:\'6v(\'+f.23.1i+\') \'+(1O[i][0]*o)+\'K \'+(1O[i][1]*o)+\'K\'})}m(1q.3W&&(i==3||i==5))k.11(\'1K\',F,48,f.1b[i],J);k.1f(f.1b[i],48)}}k.36[f.19]=f;m(f.2t)f.2t()},2S:u(C,x,y,w,h,5P){m(5P)f.1n.z.18=(h>=4*f.1C)?\'1u\':\'P\';f.1n.z.U=(x-f.1C)+\'K\';f.1n.z.1a=(y-f.1C)+\'K\';f.1n.z.X=(w+2*(C.1D+f.1C))+\'K\';w+=2*(C.1D-f.1C);h+=+2*(C.1G-f.1C);f.1b[4].z.X=w>=0?w+\'K\':0;f.1b[4].z.H=h>=0?h+\'K\':0;m(f.3G)f.1b[3].z.H=f.1b[5].z.H=f.1b[4].z.H},4G:u(5W){m(5W)f.1n.z.18=\'P\';Q{k.2J(f.1n);16{f.1n.1W.49(f.1n)}12(e){}}}};k.42=u(a,1L,3h,1N){f.a=a;f.3h=3h;f.1N=1N||\'1z\';f.6m=!f.8p;k.4u=17;k.4v();q L=f.L=k.E.14;S(q i=0;i<k.4y.14;i++){q 2B=k.4y[i];f[2B]=1L&&1s 1L[2B]!=\'2p\'?1L[2B]:k[2B]}q r=f.46=((1L&&1L.4T)?k.$(1L.4T):F)||a.3i(\'Y\')[0]||a;f.3T=r.1p||a.1p;S(q i=0;i<k.E.14;i++){m(k.E[i]&&k.E[i].a==a){k.E[i].2V();B 17}}S(q i=0;i<k.E.14;i++){m(k.E[i]&&k.E[i].46!=r&&!k.E[i].3Q){k.E[i].4n()}}k.E[f.L]=f;m(!k.5Y){m(k.E[L-1])k.E[L-1].1R();m(1s k.1P!=\'2p\'&&k.E[k.1P])k.E[k.1P].1R()}f.1H=[];q 1O=k.1c(r);f.1E=r.X?r.X:r.28;f.1X=r.H?r.H:r.1t;f.2i=1O.x;f.2h=1O.y;f.2C=(f.46.28-f.1E)/2;f.3w=(f.46.1t-f.1X)/2;f.G=k.11(\'1K\',{1p:\'W-G-\'+f.L,Z:f.4c},{18:\'P\',1c:\'1Z\',1l:k.44++},F,J);f.G.7v=u(e){16{k.E[L].4D(e)}12(e){}};f.G.7w=u(e){16{k.E[L].4D(e)}12(e){}};m(f.1N==\'1z\'&&f.2d==2)f.2d=0;m(k.36[f.19]){f.4z();f[f.1N+\'4p\']()}Q m(!f.19){f[f.1N+\'4p\']()}Q{f.4h();q C=f;3R k.3f(f.19,u(){C.4z();C[C.1N+\'4p\']()})}B J};k.42.5C={4z:u(x,y){q w=k.36[f.19];f.V=w;w.1n.z.1l=f.G.z.1l;k.36[f.19]=F},4h:u(){m(f.3Q||f.1h)B;f.4o=f.a.z.1J;f.a.z.1J=\'7N\';f.1h=k.1h;q C=f;f.1h.2o=u(){C.4n()};f.1h.z.1a=(f.2h+(f.1X-f.1h.1t)/2)+\'K\';q C=f,U=(f.2i+f.2C+(f.1E-f.1h.28)/2)+\'K\';1Y(u(){m(C.1h)C.1h.z.U=U},2D)},7j:u(){q C=f;q Y=T.11(\'Y\');f.N=Y;Y.4j=u(){m(k.E[C.L])C.76()};m(k.8K)Y.7s=u(){B 17};Y.Z=\'W-1z\';Y.z.18=\'P\';Y.z.4N=\'4L\';Y.z.1c=\'1Z\';Y.z.6o=\'4O\';Y.z.1l=3;Y.2U=k.4P;m(k.31)k.2A.2k(Y);m(k.1g&&k.79)Y.1i=F;Y.1i=k.2Z(f.a);f.4h()},76:u(){16{m(!f.N)B;m(f.3Q)B;Q f.3Q=J;m(f.1h){f.1h.z.U=\'-3e\';f.1h=F;f.a.z.1J=f.4o||\'\'}f.2E=k.2E;f.2y=f.N.X;f.2z=f.N.H;f.3t=f.2y;f.6B=f.2z;f.N.z.X=f.1E+\'K\';f.N.z.H=f.1X+\'K\';f.6k();f.G.2k(f.N);f.N.z.1c=\'4I\';m(f.M)f.G.2k(f.M);f.G.z.U=f.2i+\'K\';f.G.z.1a=f.2h+\'K\';k.2A.2k(f.G);f.1D=(f.N.28-f.1E)/2;f.1G=(f.N.1t-f.1X)/2;q 6U=k.6V+2*f.1D;f.2E+=2*f.1G;q 22=f.2y/f.2z;q 2L=f.3X?f.2L:f.2y;q 2M=f.3X?f.2M:f.2z;q 2N={x:\'2X\',y:\'2X\'};q 3n=k.6T();f.x={I:1x(f.2i)-f.1D+f.2C,D:f.2y,1I:(f.2y<2L&&!k.4w)?f.2y:2L,1y:k.3M,2x:6U,2w:3n.3Y,2r:3n.X,4B:f.1E};q 7g=f.x.I+1x(f.1E);f.x=f.2N(f.x);f.y={I:1x(f.2h)-f.1G+f.3w,D:f.2z,1I:f.2z<2M?f.2z:2M,1y:k.3N,2x:f.2E,2w:3n.45,2r:3n.H,4B:f.1X};q 7e=f.y.I+1x(f.1X);f.y=f.2N(f.y);f.72(22);q x=f.x;q y=f.y;f.70()}12(e){1q.4k.2s=k.2Z(f.a)}},2N:u(p){q 7d,48=p==f.x?\'x\':\'y\';q 4F=17;q 2K=J;p.I=1w.5k(p.I-((p.D-p.4B)/2)); m(p.I<p.2w+p.1y){p.I=p.2w+p.1y;4F=J}m(p.D<p.1I){p.D=p.1I;2K=17}m(p.I+p.D>p.2w+p.2r-p.2x){m(4F&&2K){p.D=p.2r-p.1y-p.2x}Q m(p.D<p.2r-p.1y-p.2x){p.I=p.2w+p.2r-p.D-p.1y-p.2x}Q{p.I=p.2w+p.1y;m(2K)p.D=p.2r-p.1y-p.2x}}m(p.D<p.1I){p.D=p.1I;2K=17}m(p.I<p.1y){73=p.I;p.I=p.1y;m(2K)p.D=p.D-(p.I-73)}B p},72:u(22){q x=f.x;q y=f.y;q 3D=17;m(x.D/y.D>22){ q 7p=x.D;x.D=y.D*22;m(x.D<x.1I){m(k.4w)x.3o=x.D;x.D=x.1I;m(!x.3o)y.D=x.D/22}3D=J}Q m(x.D/y.D<22){ q 7m=y.D;y.D=x.D/22;3D=J}m(3D){x.I=1x(f.2i)-f.1D+f.2C;x.1I=x.D;f.x=f.2N(x);y.I=1x(f.2h)-f.1G+f.3w;y.1I=y.D;f.y=f.2N(y)}},70:u(){q 1j={x:f.x.I-20,y:f.y.I-20,w:f.x.D+40,h:f.y.D+40+f.3q};k.47=(k.1g&&k.2q()<7);m(k.47)f.1M(\'4s\',\'P\',1j);k.3V=((1q.3W&&3g.71<9)||3g.8y==\'8z\'||(k.1g&&k.2q()<5.5));m(k.3V)f.1M(\'4t\',\'P\',1j);m(k.41)f.1M(\'*\',\'P\',1j);m(f.x.3o)f.N.z.6Z=\'0 2X\';f.54(1,{x:f.2i+f.2C-f.1D,y:f.2h+f.3w-f.1G,w:f.1E,h:f.1X,2g:f.1E,o:k.4Z},{x:f.x.I,y:f.y.I,w:f.x.D,h:f.y.D,2g:f.x.3o,o:f.V?f.V.1C:0},k.6Y,k.6W)},54:u(1U,1B,O,1V,4A){m(1U&&f.V&&!f.2d)f.V.2S(f,f.x.I,f.y.I,f.x.D,f.y.D);Q m(!1U&&f.V){m(f.2d)f.V.2S(f,1B.x,1B.y,1B.w,1B.h);Q f.V.4G()}m(!1U){q n=f.G.2Q.14;S(q i=n-1;i>=0;i--){q 3B=f.G.2Q[i];m(3B!=f.N){k.2J(3B);f.G.49(3B)}}}m(f.6X){1B.1k=1U?0:1;O.1k=1U}q t,C=f,2O=1w[f.2O]||1w.74;m(!1U)2O=1w[f.77]||2O;S(q i=1;i<=4A;i++){t=1w.5k(i*(1V/4A));(u(){q 6R=i,3z={};S(q x 4H 1B)3z[x]=2O(t,1B[x],O[x]-1B[x],1V);1Y(u(){m(1U&&6R==1){C.N.z.18=\'1u\';C.a.Z+=\' W-6D-6E\'}C.6p(3z)},t)})()}m(1U){1Y(u(){m(C.V)C.V.1n.z.18="1u"},t);1Y(u(){m(C.M)C.6d();C.6n()},t+50)}Q 1Y(u(){C.4x()},t)},6p:u(O){16{f.G.z.X=(O.w+2*f.1D)+\'K\';f.N.z.X=((O.2g&&!8b(O.2g))?O.2g:O.w)+\'K\';m(k.31)f.N.z.6o=f.N.z.X;f.N.z.H=O.h+\'K\';m(O.1k)k.1f(f.G,{1d:O.1k});m(f.V&&f.2d){q o=f.V.1C-O.o;f.V.2S(f,O.x+o,O.y+o,O.w-2*o,O.h-2*o,1)}k.1f(f.G,{\'18\':\'1u\',\'U\':O.x+\'K\',\'1a\':O.y+\'K\'})}12(e){1q.4k.2s=k.2Z(f.a)}},6n:u(){f.43=J;f.2V();f.6P();m(k.6a)f.6u();m(f.6m&&f.3t>f.x.D)f.6O();m(!f.M)f.5b()},5b:u(){q L=f.L;q 19=f.19;3R k.3f(19,u(){16{k.E[L].6q()}12(e){}})},6q:u(){q 1v=k.4e(f.L,1);m(1v.2o.6r().26(/k\\.3p/))q Y=k.11(\'Y\',{1i:k.2Z(1v)})},4n:u(){k.E[f.L]=F;f.a.z.1J=f.4o;m(f.1h)k.1h.z.U=\'-3e\'},6u:u(){q 4K=k.11(\'a\',{2s:k.6t,Z:\'W-4K\',1Q:k.6s,2U:k.6l});f.3O({5j:4K,1c:\'1a U\'})},6k:u(){m(!f.2T&&f.3T)f.2T=\'M-S-\'+f.3T;m(f.2T)f.M=k.55(f.2T);m(!f.M&&!f.3c&&f.5q)16{f.3c=86(f.5q)}12(e){}m(!f.M&&f.3c)f.M=k.11(\'1K\',{Z:\'W-M\',1Q:f.3c});m(!f.M){q 1v=f.a.6e;3b(1v&&!k.3a(1v)){m(/W-M/.1m(1v.Z||F)){f.M=1v.5n(1);5g}1v=1v.6e}}m(f.M){f.2E+=f.3q}},6d:u(){16{k.1f(f.G,{X:f.G.28+\'K\',H:f.G.1t+\'K\'});k.1f(f.M,{18:\'P\',3N:k.31?0:\'-\'+f.y.D+\'K\'});f.M.Z+=\' W-4N-4L\';q H,C=f;m(k.1g&&(k.2q()<6||T.5e==\'6b\')){H=f.M.1t}Q{q 6f=k.11(\'1K\',{1Q:f.M.1Q},F,F,J);f.M.1Q=\'\';f.M.2k(6f);H=f.M.2Q[0].1t;f.M.1Q=f.M.2Q[0].1Q}k.1f(f.M,{3H:\'P\',H:0,1l:2,3N:0});f.G.z.H=\'2X\';m(k.5m){q 2a=(1w.5k(H/50)||1)*k.5m}Q{f.5t(H,1);B}S(q h=H%2a,t=0;h<=H;h+=2a,t+=10){(u(){q 6g=h,3x=(h==H)?1:0;1Y(u(){C.5t(6g,3x)},t)})()}}12(e){}},5t:u(H,3x){m(!f.M)B;f.M.z.H=H+\'K\';f.M.z.18=\'1u\';f.y.D=f.G.1t-2*f.1G;q o=f.V;m(o){o.1b[4].z.H=(f.G.1t-2*f.V.1C)+\'K\';m(o.3G)o.1b[3].z.H=o.1b[5].z.H=o.1b[4].z.H}m(3x)f.5b()},1M:u(3y,18,1j){q R=T.3i(3y);q 2Y=3y==\'*\'?\'3H\':\'18\';S(q i=0;i<R.14;i++){m(2Y==\'18\'||(T.8F.8I(R[i],"").8H(\'3H\')==\'2X\'||R[i].3v(\'P-24\')!=F)){q 1o=R[i].3v(\'P-24\');m(18==\'1u\'&&1o){1o=1o.2H(\'[\'+f.L+\']\',\'\');R[i].2m(\'P-24\',1o);m(!1o)R[i].z[2Y]=R[i].4W}Q m(18==\'P\'){q 1T=k.1c(R[i]);1T.w=R[i].28;1T.h=R[i].1t;q 6j=(1T.x+1T.w<1j.x||1T.x>1j.x+1j.w);q 6i=(1T.y+1T.h<1j.y||1T.y>1j.y+1j.h);q 4V=k.4U(R[i]);m(!6j&&!6i&&4V!=f.L){m(!1o){R[i].2m(\'P-24\',\'[\'+f.L+\']\');R[i].4W=R[i].z[2Y];R[i].z[2Y]=\'P\'}Q m(!1o.26(\'[\'+f.L+\']\')){R[i].2m(\'P-24\',1o+\'[\'+f.L+\']\')}}Q m(1o==\'[\'+f.L+\']\'||k.1P==4V){R[i].2m(\'P-24\',\'\');R[i].z[2Y]=R[i].4W||\'\'}Q m(1o&&1o.26(\'[\'+f.L+\']\')){R[i].2m(\'P-24\',1o.2H(\'[\'+f.L+\']\',\'\'))}}}}},2V:u(){f.G.z.1l=k.44++;S(q i=0;i<k.E.14;i++){m(k.E[i]&&i==k.1P){q 2f=k.E[i];2f.N.Z+=\' W-\'+2f.1N+\'-3j\';m(2f.M){2f.M.Z+=\' W-M-3j\'}2f.N.z.1J=k.1g?\'6w\':\'4Y\';2f.N.2U=k.6h}}m(f.V)f.V.1n.z.1l=f.G.z.1l;f.N.Z=\'W-\'+f.1N;m(f.M){f.M.Z=f.M.Z.2H(\' W-M-3j\',\'\')}f.N.2U=k.4P;k.3l=1q.3W?\'4Y\':\'6v(\'+k.4a+k.4X+\'), 4Y\';m(k.1g&&k.2q()<6)k.3l=\'6w\';f.N.z.1J=k.3l;k.1P=f.L;k.29(T,\'52\',k.3S)},2j:u(e){f.x.I=e.U+e.5a;f.y.I=e.1a+e.56;m(e.2b==\'1z\')f.N.z.1J=\'2j\';k.1f(f.G,{U:f.x.I+\'K\',1a:f.y.I+\'K\'});m(f.V)f.V.2S(f,f.x.I,f.y.I,f.x.D,f.y.D)},1R:u(){m(f.51||!f.43)B;f.51=J;k.3d(T,\'52\',k.3S);16{f.N.z.1J=\'8t\';f.54(0,{x:f.x.I,y:f.y.I,w:f.x.D,h:1x(f.N.z.H),2g:f.x.3o,o:f.V?f.V.1C:0},{x:f.2i-f.1D+f.2C,y:f.2h-f.1G+f.3w,w:f.1E,h:f.1X,2g:f.1E,o:k.4Z},k.6L,k.6K)}12(e){f.4x()}},3O:u(o){q r=o.5j;m(1s r==\'59\')r=k.55(r);m(!r||1s r==\'59\')B;q 1e=k.11(\'1K\',F,{\'U\':0,\'1a\':0,\'1c\':\'1Z\',\'1l\':3,\'18\':\'P\'},f.G,J);m(o.1d)k.1f(r,{1d:o.1d});r.z.8v=\'4O\';r.Z+=\' W-4N-4L\';1e.2k(r);1e.6J=o.1c;f.4i(1e);m(o.3U)1e.2m(\'3U\',J);m(!o.1d)o.1d=1;1e.2m(\'1d\',o.1d);k.3E(1e,0,o.1d);k.4M(f.1H,1e)},4i:u(1e){q U=f.1D;q 5c=f.x.D-1e.28;q 1a=f.1G;q 4R=1x(f.N.z.H)-1e.1t;q p=1e.6J||\'3F 3F\';m(/^6I/.1m(p))1a+=4R;m(/^3F/.1m(p))1a+=4R/2;m(/6M$/.1m(p))U+=5c;m(/3F$/.1m(p))U+=5c/2;1e.z.U=U+\'K\';1e.z.1a=1a+\'K\'},6P:u(){S(q i=0;i<k.1H.14;i++){q o=k.1H[i],5r=o.4T,5o=o.2P;m((!5r&&!5o)||5r==f.3T||5o===f.2P){f.3O(o)}}},6O:u(){q a=k.11(\'a\',{2s:\'6G:k.E[\'+f.L+\'].6x();\',2U:k.6A,Z:\'W-7L-3p\'});f.3L=a;f.3O({5j:a,1c:k.6z,3U:J,1d:k.6y})},6x:u(){16{k.2J(f.3L);f.3L.1W.49(f.3L);f.2V();f.x.I=1x(f.G.z.U)-(f.3t-f.N.X)/2;m(f.x.I<k.3M)f.x.I=k.3M;f.G.z.U=f.x.I+\'K\';k.1f(f.N,{X:f.3t+\'K\',H:f.6B+\'K\'});f.x.D=f.3t;f.G.z.X=(f.x.D+2*f.1D)+\'K\';f.y.D=f.G.1t-2*f.1G;m(f.V)f.V.2S(f,f.x.I,f.y.I,f.x.D,f.y.D);S(q i=0;i<f.1H.14;i++)f.4i(f.1H[i]);f.4l()}12(e){1q.4k.2s=f.N.1i}},4l:u(){q 1j={x:1x(f.G.z.U)-20,y:1x(f.G.z.1a)-20,w:f.N.28+40,h:f.N.1t+40+f.3q};m(k.47)f.1M(\'4s\',\'P\',1j);m(k.3V)f.1M(\'4t\',\'P\',1j);m(k.41)f.1M(\'*\',\'P\',1j)},4D:u(e){m(!e)e=1q.1r;q 3C=/7x/i.1m(e.2b);m(!e.1S)e.1S=e.4q;m(k.1g)e.6C=3C?e.7B:e.7G;m(k.2I(e.6C)==f||k.1A)B;S(q i=0;i<f.1H.14;i++){q o=f.1H[i];m(o.3v(\'3U\')){q 1B=3C?0:o.3v(\'1d\'),O=3C?o.3v(\'1d\'):0;k.3E(o,1B,O)}}},4x:u(){f.a.Z=f.a.Z.2H(\'W-6D-6E\',\'\');m(k.47)f.1M(\'4s\',\'1u\');m(k.3V)f.1M(\'4t\',\'1u\');m(k.41)f.1M(\'*\',\'1u\');m(f.V&&f.2d)f.V.4G();k.2J(f.G);m(k.1g&&k.2q()<5.5)f.G.1Q=\'\';Q f.G.1W.49(f.G);k.E[f.L]=F;k.6F()}};q 7D=k.42;k.29(T,\'6H\',k.4m);k.29(T,\'6Q\',k.4m);k.29(1q,\'6S\',k.6N);k.29(1q,\'6S\',u(){k.6c=J});k.4J();',62,543,'|||||||||||||||this|||||hs||if||||var|el|||function|||||style||return|exp|span|expanders|null|wrapper|height|min|true|px|key|caption|content|to|hidden|else|els|for|document|left|objOutline|highslide|width|img|className||createElement|catch||length||try|false|visibility|outlineType|top|td|position|opacity|overlay|setStyles|ie|loading|src|imgPos|op|zIndex|test|table|hiddenBy|id|window|event|typeof|offsetHeight|visible|next|Math|parseInt|marginMin|image|dragArgs|from|offset|offsetBorderW|thumbWidth|case|offsetBorderH|overlays|minSpan|cursor|div|params|showHideElements|contentType|pos|focusKey|innerHTML|close|target|elPos|up|dur|parentNode|thumbHeight|setTimeout|absolute||func|ratio|graphic|by||match||offsetWidth|addEventListener|step|type|styles|outlineWhileAnimating|re|blurExp|imgW|thumbTop|thumbLeft|move|appendChild|hasDragged|setAttribute|clone|onclick|undefined|ieVersion|clientSpan|href|onLoad|oFinal|fading|scroll|marginMax|newWidth|newHeight|container|name|thumbOffsetBorderW|100|marginBottom|arr|attribs|replace|getExpander|purge|allowReduce|minWidth|minHeight|justify|easing|slideshowGroup|childNodes|number|setPosition|captionId|title|focus|aAr|auto|prop|getSrc||safari||||preloadTheseImages|pendingOutlines||||isHsAnchor|while|captionText|removeEventListener|9999px|Outline|navigator|custom|getElementsByTagName|blur|dir|styleRestoreCursor|on|page|imgSpan|expand|spaceForCaption|param|getParams|fullExpandWidth|iebody|getAttribute|thumbOffsetBorderH|end|tagName|size|tr|child|over|changed|fade|center|hasAlphaImageLoader|overflow|node|faders|topmostKey|fullExpandLabel|marginLeft|marginTop|createOverlay|previousOrNext|onLoadStarted|new|keyHandler|thumbsUserSetId|hideOnMouseOut|hideIframes|opera|allowSizeReduction|scrollLeft|preventDefault||geckoMac|Expander|isExpanded|zIndexCounter|scrollTop|thumb|hideSelects|dim|removeChild|graphicsDir|topZ|wrapperClassName|documentElement|getAdjacentAnchor|Click|250|displayLoading|positionOverlay|onload|location|redoShowHide|mouseClickHandler|cancelLoading|originalCursor|Create|srcElement|hsAr|SELECT|IFRAME|continuePreloading|genContainer|padToMinWidth|afterClose|overrides|connectOutline|steps|thumbSpan|parent|wrapperMouseHandler|tbody|hasMovedMin|destroy|in|relative|setClickEvents|credits|block|push|display|none|restoreTitle|element|dTop|distance|thumbnailId|getWrapperKey|wrapperKey|origProp|restoreCursor|pointer|outlineStartOffset||isClosing|keydown|resize|changeSize|getNode|dY|dragHandler|hasFocused|string|dX|prepareNextOutline|dLeft|aTags|compatMode|preloadFullImage|break|clones|getParam|overlayId|round|numberOfImagesToPreload|captionSlideSpeed|cloneNode|sg|activeI|captionEval|tId|body|placeCaption|loadingOpacity|rel|and|loadingText|clientX|parseFloat|val|mousemove|prototype|JS|tag|cur|html|userAgent|200|Highslide|clickX|filter|onGraphicLoad|clientWidth|pow|vis|pThis|appendTo|preloadGraphic|offsetParent|self|previous|hide|loadingTitle|allowMultipleInstances|nopad|focusTopmost|detachEvent|offsetTop|setAttribs|adj|clickY|clientY|offsetLeft|enableKeyListener|form|showCredits|BackCompat|pageLoaded|writeCaption|nextSibling|temp|pH|focusTitle|clearsY|clearsX|getCaption|creditsTitle|isImage|afterExpand|maxWidth|setSize|preloadNext|toString|creditsText|creditsHref|writeCredits|url|hand|doFullExpand|fullExpandOpacity|fullExpandPosition|fullExpandTitle|fullExpandHeight|relatedTarget|active|anchor|cleanUp|javascript|mousedown|bottom|hsPos|restoreSteps|restoreDuration|right|preloadImages|createFullExpand|createOverlays|mouseup|pI|load|getPageSize|modMarginRight|marginRight|expandSteps|fadeInOut|expandDuration|margin|show|appVersion|correctRatio|tmpMin|easeInQuad||contentLoaded|easingClose|switch|flushImgSize|keyCode|homepage|alpha|tgt|oldBottom|attributes|oldRight|last|upcoming|imageCreate|the|returnValue|tmpHeight|registerOverlay|border|tmpWidth|http|Go|oncontextmenu|no|vikjavev|onmouseover|onmouseout|mouseover|Gecko|rv|removeAttribute|fromElement|pageYOffset|HsExpander|innerHeight|pageXOffset|toElement|Macintosh|Safari|getElementById|MSIE|full|split|wait|innerWidth|all|shadow|drop|Powered|clientHeight|xpand|progid|void|linearTween|keys|arrow|DXImageTransform|Microsoft|scale|background|sizingMethod|AlphaImageLoader|eval|Use|1001|collapse|borderCollapse|isNaN|outlinesDir|lineHeight|cellSpacing|click|clearTimeout|abs|png|outlines|drag|actual|Loading|front|zoomout|isHtml|fontSize|cancel|hasHtmlexpanders|default|button|styleFloat|Expand|graphics|vendor|KDE|bring|padding|object|htmlE|attachEvent|defaultView|sqrt|getPropertyValue|getComputedStyle|dragSensitivity|blockRightClick'.split('|'),0,{}))

/*hs.registerOverlay(
    	{
    		thumbnailId: null,
    		overlayId: 'controlbar',
    		position: 'top right',
    		hideOnMouseOut: true
		}
	);*/
	hs.showCredits = false;
    hs.graphicsDir = '/css/graphics/';
	hs.restoreTitle = 'Click to close image, click and drag to move.';
    // Tell Highslide to use the thumbnail's title for captions
    hs.captionEval = 'this.thumb.title';
