/*527ba311246967b5881d6e6d58302e69*/

var Prototype={Version:'1.6.0.3',Browser:{IE:!!(window.attachEvent&&navigator.userAgent.indexOf('Opera')===-1),Opera:navigator.userAgent.indexOf('Opera')>-1,WebKit:navigator.userAgent.indexOf('AppleWebKit/')>-1,Gecko:navigator.userAgent.indexOf('Gecko')>-1&&navigator.userAgent.indexOf('KHTML')===-1,MobileSafari:!!navigator.userAgent.match(/Apple.*Mobile.*Safari/)},BrowserFeatures:{XPath:!!document.evaluate,SelectorsAPI:!!document.querySelector,ElementExtensions:!!window.HTMLElement,SpecificElementExtensions:document.createElement('div')['__proto__']&&document.createElement('div')['__proto__']!==document.createElement('form')['__proto__']},ScriptFragment:'<script[^>]*>([\\S\\s]*?)<\/script>',JSONFilter:/^\/\*-secure-([\s\S]*)\*\/\s*$/,emptyFunction:function(){},K:function(x){return x}};if(Prototype.Browser.MobileSafari)
Prototype.BrowserFeatures.SpecificElementExtensions=false;var Class={create:function(){var parent=null,properties=$A(arguments);if(Object.isFunction(properties[0]))
parent=properties.shift();function klass(){this.initialize.apply(this,arguments);}
Object.extend(klass,Class.Methods);klass.superclass=parent;klass.subclasses=[];if(parent){var subclass=function(){};subclass.prototype=parent.prototype;klass.prototype=new subclass;parent.subclasses.push(klass);}
for(var i=0;i<properties.length;i++)
klass.addMethods(properties[i]);if(!klass.prototype.initialize)
klass.prototype.initialize=Prototype.emptyFunction;klass.prototype.constructor=klass;return klass;}};Class.Methods={addMethods:function(source){var ancestor=this.superclass&&this.superclass.prototype;var properties=Object.keys(source);if(!Object.keys({toString:true}).length)
properties.push("toString","valueOf");for(var i=0,length=properties.length;i<length;i++){var property=properties[i],value=source[property];if(ancestor&&Object.isFunction(value)&&value.argumentNames().first()=="$super"){var method=value;value=(function(m){return function(){return ancestor[m].apply(this,arguments)};})(property).wrap(method);value.valueOf=method.valueOf.bind(method);value.toString=method.toString.bind(method);}
this.prototype[property]=value;}
return this;}};var Abstract={};Object.extend=function(destination,source){for(var property in source)
destination[property]=source[property];return destination;};Object.extend(Object,{inspect:function(object){try{if(Object.isUndefined(object))return'undefined';if(object===null)return'null';return object.inspect?object.inspect():String(object);}catch(e){if(e instanceof RangeError)return'...';throw e;}},toJSON:function(object){var type=typeof object;switch(type){case'undefined':case'function':case'unknown':return;case'boolean':return object.toString();}
if(object===null)return'null';if(object.toJSON)return object.toJSON();if(Object.isElement(object))return;var results=[];for(var property in object){var value=Object.toJSON(object[property]);if(!Object.isUndefined(value))
results.push(property.toJSON()+': '+value);}
return'{'+results.join(', ')+'}';},toQueryString:function(object){return $H(object).toQueryString();},toHTML:function(object){return object&&object.toHTML?object.toHTML():String.interpret(object);},keys:function(object){var keys=[];for(var property in object)
keys.push(property);return keys;},values:function(object){var values=[];for(var property in object)
values.push(object[property]);return values;},clone:function(object){return Object.extend({},object);},isElement:function(object){return!!(object&&object.nodeType==1);},isArray:function(object){return object!=null&&typeof object=="object"&&'splice'in object&&'join'in object;},isHash:function(object){return object instanceof Hash;},isFunction:function(object){return typeof object=="function";},isString:function(object){return typeof object=="string";},isNumber:function(object){return typeof object=="number";},isUndefined:function(object){return typeof object=="undefined";}});Object.extend(Function.prototype,{argumentNames:function(){var names=this.toString().match(/^[\s\(]*function[^(]*\(([^\)]*)\)/)[1].replace(/\s+/g,'').split(',');return names.length==1&&!names[0]?[]:names;},bind:function(){if(arguments.length<2&&Object.isUndefined(arguments[0]))return this;var __method=this,args=$A(arguments),object=args.shift();return function(){return __method.apply(object,args.concat($A(arguments)));}},bindAsEventListener:function(){var __method=this,args=$A(arguments),object=args.shift();return function(event){return __method.apply(object,[event||window.event].concat(args));}},curry:function(){if(!arguments.length)return this;var __method=this,args=$A(arguments);return function(){return __method.apply(this,args.concat($A(arguments)));}},delay:function(){var __method=this,args=$A(arguments),timeout=args.shift()*1000;return window.setTimeout(function(){return __method.apply(__method,args);},timeout);},defer:function(){var args=[0.01].concat($A(arguments));return this.delay.apply(this,args);},wrap:function(wrapper){var __method=this;return function(){return wrapper.apply(this,[__method.bind(this)].concat($A(arguments)));}},methodize:function(){if(this._methodized)return this._methodized;var __method=this;return this._methodized=function(){return __method.apply(null,[this].concat($A(arguments)));};}});Date.prototype.toJSON=function(){return'"'+this.getUTCFullYear()+'-'+
(this.getUTCMonth()+1).toPaddedString(2)+'-'+
this.getUTCDate().toPaddedString(2)+'T'+
this.getUTCHours().toPaddedString(2)+':'+
this.getUTCMinutes().toPaddedString(2)+':'+
this.getUTCSeconds().toPaddedString(2)+'Z"';};var Try={these:function(){var returnValue;for(var i=0,length=arguments.length;i<length;i++){var lambda=arguments[i];try{returnValue=lambda();break;}catch(e){}}
return returnValue;}};RegExp.prototype.match=RegExp.prototype.test;RegExp.escape=function(str){return String(str).replace(/([.*+?^=!:${}()|[\]\/\\])/g,'\\$1');};var PeriodicalExecuter=Class.create({initialize:function(callback,frequency){this.callback=callback;this.frequency=frequency;this.currentlyExecuting=false;this.registerCallback();},registerCallback:function(){this.timer=setInterval(this.onTimerEvent.bind(this),this.frequency*1000);},execute:function(){this.callback(this);},stop:function(){if(!this.timer)return;clearInterval(this.timer);this.timer=null;},onTimerEvent:function(){if(!this.currentlyExecuting){try{this.currentlyExecuting=true;this.execute();}finally{this.currentlyExecuting=false;}}}});Object.extend(String,{interpret:function(value){return value==null?'':String(value);},specialChar:{'\b':'\\b','\t':'\\t','\n':'\\n','\f':'\\f','\r':'\\r','\\':'\\\\'}});Object.extend(String.prototype,{gsub:function(pattern,replacement){var result='',source=this,match;replacement=arguments.callee.prepareReplacement(replacement);while(source.length>0){if(match=source.match(pattern)){result+=source.slice(0,match.index);result+=String.interpret(replacement(match));source=source.slice(match.index+match[0].length);}else{result+=source,source='';}}
return result;},sub:function(pattern,replacement,count){replacement=this.gsub.prepareReplacement(replacement);count=Object.isUndefined(count)?1:count;return this.gsub(pattern,function(match){if(--count<0)return match[0];return replacement(match);});},scan:function(pattern,iterator){this.gsub(pattern,iterator);return String(this);},truncate:function(length,truncation){length=length||30;truncation=Object.isUndefined(truncation)?'...':truncation;return this.length>length?this.slice(0,length-truncation.length)+truncation:String(this);},strip:function(){return this.replace(/^\s+/,'').replace(/\s+$/,'');},stripTags:function(){return this.replace(/<\/?[^>]+>/gi,'');},stripScripts:function(){return this.replace(new RegExp(Prototype.ScriptFragment,'img'),'');},extractScripts:function(){var matchAll=new RegExp(Prototype.ScriptFragment,'img');var matchOne=new RegExp(Prototype.ScriptFragment,'im');return(this.match(matchAll)||[]).map(function(scriptTag){return(scriptTag.match(matchOne)||['',''])[1];});},evalScripts:function(){return this.extractScripts().map(function(script){return eval(script)});},escapeHTML:function(){var self=arguments.callee;self.text.data=this;return self.div.innerHTML;},unescapeHTML:function(){var div=new Element('div');div.innerHTML=this.stripTags();return div.childNodes[0]?(div.childNodes.length>1?$A(div.childNodes).inject('',function(memo,node){return memo+node.nodeValue}):div.childNodes[0].nodeValue):'';},toQueryParams:function(separator){var match=this.strip().match(/([^?#]*)(#.*)?$/);if(!match)return{};return match[1].split(separator||'&').inject({},function(hash,pair){if((pair=pair.split('='))[0]){var key=decodeURIComponent(pair.shift());var value=pair.length>1?pair.join('='):pair[0];if(value!=undefined)value=decodeURIComponent(value);if(key in hash){if(!Object.isArray(hash[key]))hash[key]=[hash[key]];hash[key].push(value);}
else hash[key]=value;}
return hash;});},toArray:function(){return this.split('');},succ:function(){return this.slice(0,this.length-1)+
String.fromCharCode(this.charCodeAt(this.length-1)+1);},times:function(count){return count<1?'':new Array(count+1).join(this);},camelize:function(){var parts=this.split('-'),len=parts.length;if(len==1)return parts[0];var camelized=this.charAt(0)=='-'?parts[0].charAt(0).toUpperCase()+parts[0].substring(1):parts[0];for(var i=1;i<len;i++)
camelized+=parts[i].charAt(0).toUpperCase()+parts[i].substring(1);return camelized;},capitalize:function(){return this.charAt(0).toUpperCase()+this.substring(1).toLowerCase();},underscore:function(){return this.gsub(/::/,'/').gsub(/([A-Z]+)([A-Z][a-z])/,'#{1}_#{2}').gsub(/([a-z\d])([A-Z])/,'#{1}_#{2}').gsub(/-/,'_').toLowerCase();},dasherize:function(){return this.gsub(/_/,'-');},inspect:function(useDoubleQuotes){var escapedString=this.gsub(/[\x00-\x1f\\]/,function(match){var character=String.specialChar[match[0]];return character?character:'\\u00'+match[0].charCodeAt().toPaddedString(2,16);});if(useDoubleQuotes)return'"'+escapedString.replace(/"/g,'\\"')+'"';return"'"+escapedString.replace(/'/g,'\\\'')+"'";},toJSON:function(){return this.inspect(true);},unfilterJSON:function(filter){return this.sub(filter||Prototype.JSONFilter,'#{1}');},isJSON:function(){var str=this;if(str.blank())return false;str=this.replace(/\\./g,'@').replace(/"[^"\\\n\r]*"/g,'');return(/^[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]*$/).test(str);},evalJSON:function(sanitize){var json=this.unfilterJSON();try{if(!sanitize||json.isJSON())return eval('('+json+')');}catch(e){}
throw new SyntaxError('Badly formed JSON string: '+this.inspect());},include:function(pattern){return this.indexOf(pattern)>-1;},startsWith:function(pattern){return this.indexOf(pattern)===0;},endsWith:function(pattern){var d=this.length-pattern.length;return d>=0&&this.lastIndexOf(pattern)===d;},empty:function(){return this=='';},blank:function(){return/^\s*$/.test(this);},interpolate:function(object,pattern){return new Template(this,pattern).evaluate(object);}});if(Prototype.Browser.WebKit||Prototype.Browser.IE)Object.extend(String.prototype,{escapeHTML:function(){return this.replace(/&/g,'&amp;').replace(/</g,'&lt;').replace(/>/g,'&gt;');},unescapeHTML:function(){return this.stripTags().replace(/&amp;/g,'&').replace(/&lt;/g,'<').replace(/&gt;/g,'>');}});String.prototype.gsub.prepareReplacement=function(replacement){if(Object.isFunction(replacement))return replacement;var template=new Template(replacement);return function(match){return template.evaluate(match)};};String.prototype.parseQuery=String.prototype.toQueryParams;Object.extend(String.prototype.escapeHTML,{div:document.createElement('div'),text:document.createTextNode('')});String.prototype.escapeHTML.div.appendChild(String.prototype.escapeHTML.text);var Template=Class.create({initialize:function(template,pattern){this.template=template.toString();this.pattern=pattern||Template.Pattern;},evaluate:function(object){if(Object.isFunction(object.toTemplateReplacements))
object=object.toTemplateReplacements();return this.template.gsub(this.pattern,function(match){if(object==null)return'';var before=match[1]||'';if(before=='\\')return match[2];var ctx=object,expr=match[3];var pattern=/^([^.[]+|\[((?:.*?[^\\])?)\])(\.|\[|$)/;match=pattern.exec(expr);if(match==null)return before;while(match!=null){var comp=match[1].startsWith('[')?match[2].gsub('\\\\]',']'):match[1];ctx=ctx[comp];if(null==ctx||''==match[3])break;expr=expr.substring('['==match[3]?match[1].length:match[0].length);match=pattern.exec(expr);}
return before+String.interpret(ctx);});}});Template.Pattern=/(^|.|\r|\n)(#\{(.*?)\})/;var $break={};var Enumerable={each:function(iterator,context){var index=0;try{this._each(function(value){iterator.call(context,value,index++);});}catch(e){if(e!=$break)throw e;}
return this;},eachSlice:function(number,iterator,context){var index=-number,slices=[],array=this.toArray();if(number<1)return array;while((index+=number)<array.length)
slices.push(array.slice(index,index+number));return slices.collect(iterator,context);},all:function(iterator,context){iterator=iterator||Prototype.K;var result=true;this.each(function(value,index){result=result&&!!iterator.call(context,value,index);if(!result)throw $break;});return result;},any:function(iterator,context){iterator=iterator||Prototype.K;var result=false;this.each(function(value,index){if(result=!!iterator.call(context,value,index))
throw $break;});return result;},collect:function(iterator,context){iterator=iterator||Prototype.K;var results=[];this.each(function(value,index){results.push(iterator.call(context,value,index));});return results;},detect:function(iterator,context){var result;this.each(function(value,index){if(iterator.call(context,value,index)){result=value;throw $break;}});return result;},findAll:function(iterator,context){var results=[];this.each(function(value,index){if(iterator.call(context,value,index))
results.push(value);});return results;},grep:function(filter,iterator,context){iterator=iterator||Prototype.K;var results=[];if(Object.isString(filter))
filter=new RegExp(filter);this.each(function(value,index){if(filter.match(value))
results.push(iterator.call(context,value,index));});return results;},include:function(object){if(Object.isFunction(this.indexOf))
if(this.indexOf(object)!=-1)return true;var found=false;this.each(function(value){if(value==object){found=true;throw $break;}});return found;},inGroupsOf:function(number,fillWith){fillWith=Object.isUndefined(fillWith)?null:fillWith;return this.eachSlice(number,function(slice){while(slice.length<number)slice.push(fillWith);return slice;});},inject:function(memo,iterator,context){this.each(function(value,index){memo=iterator.call(context,memo,value,index);});return memo;},invoke:function(method){var args=$A(arguments).slice(1);return this.map(function(value){return value[method].apply(value,args);});},max:function(iterator,context){iterator=iterator||Prototype.K;var result;this.each(function(value,index){value=iterator.call(context,value,index);if(result==null||value>=result)
result=value;});return result;},min:function(iterator,context){iterator=iterator||Prototype.K;var result;this.each(function(value,index){value=iterator.call(context,value,index);if(result==null||value<result)
result=value;});return result;},partition:function(iterator,context){iterator=iterator||Prototype.K;var trues=[],falses=[];this.each(function(value,index){(iterator.call(context,value,index)?trues:falses).push(value);});return[trues,falses];},pluck:function(property){var results=[];this.each(function(value){results.push(value[property]);});return results;},reject:function(iterator,context){var results=[];this.each(function(value,index){if(!iterator.call(context,value,index))
results.push(value);});return results;},sortBy:function(iterator,context){return this.map(function(value,index){return{value:value,criteria:iterator.call(context,value,index)};}).sort(function(left,right){var a=left.criteria,b=right.criteria;return a<b?-1:a>b?1:0;}).pluck('value');},toArray:function(){return this.map();},zip:function(){var iterator=Prototype.K,args=$A(arguments);if(Object.isFunction(args.last()))
iterator=args.pop();var collections=[this].concat(args).map($A);return this.map(function(value,index){return iterator(collections.pluck(index));});},size:function(){return this.toArray().length;},inspect:function(){return'#<Enumerable:'+this.toArray().inspect()+'>';}};Object.extend(Enumerable,{map:Enumerable.collect,find:Enumerable.detect,select:Enumerable.findAll,filter:Enumerable.findAll,member:Enumerable.include,entries:Enumerable.toArray,every:Enumerable.all,some:Enumerable.any});function $A(iterable){if(!iterable)return[];if(iterable.toArray)return iterable.toArray();var length=iterable.length||0,results=new Array(length);while(length--)results[length]=iterable[length];return results;}
if(Prototype.Browser.WebKit){$A=function(iterable){if(!iterable)return[];if(!(typeof iterable==='function'&&typeof iterable.length==='number'&&typeof iterable.item==='function')&&iterable.toArray)
return iterable.toArray();var length=iterable.length||0,results=new Array(length);while(length--)results[length]=iterable[length];return results;};}
Array.from=$A;Object.extend(Array.prototype,Enumerable);if(!Array.prototype._reverse)Array.prototype._reverse=Array.prototype.reverse;Object.extend(Array.prototype,{_each:function(iterator){for(var i=0,length=this.length;i<length;i++)
iterator(this[i]);},clear:function(){this.length=0;return this;},first:function(){return this[0];},last:function(){return this[this.length-1];},compact:function(){return this.select(function(value){return value!=null;});},flatten:function(){return this.inject([],function(array,value){return array.concat(Object.isArray(value)?value.flatten():[value]);});},without:function(){var values=$A(arguments);return this.select(function(value){return!values.include(value);});},reverse:function(inline){return(inline!==false?this:this.toArray())._reverse();},reduce:function(){return this.length>1?this:this[0];},uniq:function(sorted){return this.inject([],function(array,value,index){if(0==index||(sorted?array.last()!=value:!array.include(value)))
array.push(value);return array;});},intersect:function(array){return this.uniq().findAll(function(item){return array.detect(function(value){return item===value});});},clone:function(){return[].concat(this);},size:function(){return this.length;},inspect:function(){return'['+this.map(Object.inspect).join(', ')+']';},toJSON:function(){var results=[];this.each(function(object){var value=Object.toJSON(object);if(!Object.isUndefined(value))results.push(value);});return'['+results.join(', ')+']';}});if(Object.isFunction(Array.prototype.forEach))
Array.prototype._each=Array.prototype.forEach;if(!Array.prototype.indexOf)Array.prototype.indexOf=function(item,i){i||(i=0);var length=this.length;if(i<0)i=length+i;for(;i<length;i++)
if(this[i]===item)return i;return-1;};if(!Array.prototype.lastIndexOf)Array.prototype.lastIndexOf=function(item,i){i=isNaN(i)?this.length:(i<0?this.length+i:i)+1;var n=this.slice(0,i).reverse().indexOf(item);return(n<0)?n:i-n-1;};Array.prototype.toArray=Array.prototype.clone;function $w(string){if(!Object.isString(string))return[];string=string.strip();return string?string.split(/\s+/):[];}
if(Prototype.Browser.Opera){Array.prototype.concat=function(){var array=[];for(var i=0,length=this.length;i<length;i++)array.push(this[i]);for(var i=0,length=arguments.length;i<length;i++){if(Object.isArray(arguments[i])){for(var j=0,arrayLength=arguments[i].length;j<arrayLength;j++)
array.push(arguments[i][j]);}else{array.push(arguments[i]);}}
return array;};}
Object.extend(Number.prototype,{toColorPart:function(){return this.toPaddedString(2,16);},succ:function(){return this+1;},times:function(iterator,context){$R(0,this,true).each(iterator,context);return this;},toPaddedString:function(length,radix){var string=this.toString(radix||10);return'0'.times(length-string.length)+string;},toJSON:function(){return isFinite(this)?this.toString():'null';}});$w('abs round ceil floor').each(function(method){Number.prototype[method]=Math[method].methodize();});function $H(object){return new Hash(object);};var Hash=Class.create(Enumerable,(function(){function toQueryPair(key,value){if(Object.isUndefined(value))return key;return key+'='+encodeURIComponent(String.interpret(value));}
return{initialize:function(object){this._object=Object.isHash(object)?object.toObject():Object.clone(object);},_each:function(iterator){for(var key in this._object){var value=this._object[key],pair=[key,value];pair.key=key;pair.value=value;iterator(pair);}},set:function(key,value){return this._object[key]=value;},get:function(key){if(this._object[key]!==Object.prototype[key])
return this._object[key];},unset:function(key){var value=this._object[key];delete this._object[key];return value;},toObject:function(){return Object.clone(this._object);},keys:function(){return this.pluck('key');},values:function(){return this.pluck('value');},index:function(value){var match=this.detect(function(pair){return pair.value===value;});return match&&match.key;},merge:function(object){return this.clone().update(object);},update:function(object){return new Hash(object).inject(this,function(result,pair){result.set(pair.key,pair.value);return result;});},toQueryString:function(){return this.inject([],function(results,pair){var key=encodeURIComponent(pair.key),values=pair.value;if(values&&typeof values=='object'){if(Object.isArray(values))
return results.concat(values.map(toQueryPair.curry(key)));}else results.push(toQueryPair(key,values));return results;}).join('&');},inspect:function(){return'#<Hash:{'+this.map(function(pair){return pair.map(Object.inspect).join(': ');}).join(', ')+'}>';},toJSON:function(){return Object.toJSON(this.toObject());},clone:function(){return new Hash(this);}}})());Hash.prototype.toTemplateReplacements=Hash.prototype.toObject;Hash.from=$H;var ObjectRange=Class.create(Enumerable,{initialize:function(start,end,exclusive){this.start=start;this.end=end;this.exclusive=exclusive;},_each:function(iterator){var value=this.start;while(this.include(value)){iterator(value);value=value.succ();}},include:function(value){if(value<this.start)
return false;if(this.exclusive)
return value<this.end;return value<=this.end;}});var $R=function(start,end,exclusive){return new ObjectRange(start,end,exclusive);};var Ajax={getTransport:function(){return Try.these(function(){return new XMLHttpRequest()},function(){return new ActiveXObject('Msxml2.XMLHTTP')},function(){return new ActiveXObject('Microsoft.XMLHTTP')})||false;},activeRequestCount:0};Ajax.Responders={responders:[],_each:function(iterator){this.responders._each(iterator);},register:function(responder){if(!this.include(responder))
this.responders.push(responder);},unregister:function(responder){this.responders=this.responders.without(responder);},dispatch:function(callback,request,transport,json){this.each(function(responder){if(Object.isFunction(responder[callback])){try{responder[callback].apply(responder,[request,transport,json]);}catch(e){}}});}};Object.extend(Ajax.Responders,Enumerable);Ajax.Responders.register({onCreate:function(){Ajax.activeRequestCount++},onComplete:function(){Ajax.activeRequestCount--}});Ajax.Base=Class.create({initialize:function(options){this.options={method:'post',asynchronous:true,contentType:'application/x-www-form-urlencoded',encoding:'UTF-8',parameters:'',evalJSON:true,evalJS:true};Object.extend(this.options,options||{});this.options.method=this.options.method.toLowerCase();if(Object.isString(this.options.parameters))
this.options.parameters=this.options.parameters.toQueryParams();else if(Object.isHash(this.options.parameters))
this.options.parameters=this.options.parameters.toObject();}});Ajax.Request=Class.create(Ajax.Base,{_complete:false,initialize:function($super,url,options){$super(options);this.transport=Ajax.getTransport();this.request(url);},request:function(url){this.url=url;this.method=this.options.method;var params=Object.clone(this.options.parameters);if(!['get','post'].include(this.method)){params['_method']=this.method;this.method='post';}
this.parameters=params;if(params=Object.toQueryString(params)){if(this.method=='get')
this.url+=(this.url.include('?')?'&':'?')+params;else if(/Konqueror|Safari|KHTML/.test(navigator.userAgent))
params+='&_=';}
try{var response=new Ajax.Response(this);if(this.options.onCreate)this.options.onCreate(response);Ajax.Responders.dispatch('onCreate',this,response);this.transport.open(this.method.toUpperCase(),this.url,this.options.asynchronous);if(this.options.asynchronous)this.respondToReadyState.bind(this).defer(1);this.transport.onreadystatechange=this.onStateChange.bind(this);this.setRequestHeaders();this.body=this.method=='post'?(this.options.postBody||params):null;this.transport.send(this.body);if(!this.options.asynchronous&&this.transport.overrideMimeType)
this.onStateChange();}
catch(e){this.dispatchException(e);}},onStateChange:function(){var readyState=this.transport.readyState;if(readyState>1&&!((readyState==4)&&this._complete))
this.respondToReadyState(this.transport.readyState);},setRequestHeaders:function(){var headers={'X-Requested-With':'XMLHttpRequest','X-Prototype-Version':Prototype.Version,'Accept':'text/javascript, text/html, application/xml, text/xml, */*'};if(this.method=='post'){headers['Content-type']=this.options.contentType;if(this.options.encoding&&this.options.contentType.indexOf('charset=')==-1){headers['Content-type']+='; charset='+this.options.encoding;}
if(this.transport.overrideMimeType&&(navigator.userAgent.match(/Gecko\/(\d{4})/)||[0,2005])[1]<2005)
headers['Connection']='close';}
if(typeof this.options.requestHeaders=='object'){var extras=this.options.requestHeaders;if(Object.isFunction(extras.push))
for(var i=0,length=extras.length;i<length;i+=2)
headers[extras[i]]=extras[i+1];else
$H(extras).each(function(pair){headers[pair.key]=pair.value});}
for(var name in headers)
this.transport.setRequestHeader(name,headers[name]);},success:function(){var status=this.getStatus();return!status||(status>=200&&status<300);},getStatus:function(){try{return this.transport.status||0;}catch(e){return 0}},respondToReadyState:function(readyState){var state=Ajax.Request.Events[readyState],response=new Ajax.Response(this);if(state=='Complete'){try{this._complete=true;(this.options['on'+response.status]||this.options['on'+(this.success()?'Success':'Failure')]||Prototype.emptyFunction)(response,response.headerJSON);}catch(e){this.dispatchException(e);}
var contentType=response.getHeader('Content-type');if(this.options.evalJS=='force'||(this.options.evalJS&&this.isSameOrigin()&&contentType&&contentType.match(/^\s*(text|application)\/(x-)?(java|ecma)script(;.*)?\s*$/i)))
this.evalResponse();}
try{(this.options['on'+state]||Prototype.emptyFunction)(response,response.headerJSON);Ajax.Responders.dispatch('on'+state,this,response,response.headerJSON);}catch(e){this.dispatchException(e);}
if(state=='Complete'){this.transport.onreadystatechange=Prototype.emptyFunction;}},isSameOrigin:function(){var m=this.url.match(/^\s*https?:\/\/[^\/]*/);return!m||(m[0]=='#{protocol}//#{domain}#{port}'.interpolate({protocol:location.protocol,domain:document.domain,port:location.port?':'+location.port:''}));},getHeader:function(name){try{return this.transport.getResponseHeader(name)||null;}catch(e){return null}},evalResponse:function(){try{return eval((this.transport.responseText||'').unfilterJSON());}catch(e){this.dispatchException(e);}},dispatchException:function(exception){(this.options.onException||Prototype.emptyFunction)(this,exception);Ajax.Responders.dispatch('onException',this,exception);}});Ajax.Request.Events=['Uninitialized','Loading','Loaded','Interactive','Complete'];Ajax.Response=Class.create({initialize:function(request){this.request=request;var transport=this.transport=request.transport,readyState=this.readyState=transport.readyState;if((readyState>2&&!Prototype.Browser.IE)||readyState==4){this.status=this.getStatus();this.statusText=this.getStatusText();this.responseText=String.interpret(transport.responseText);this.headerJSON=this._getHeaderJSON();}
if(readyState==4){var xml=transport.responseXML;this.responseXML=Object.isUndefined(xml)?null:xml;this.responseJSON=this._getResponseJSON();}},status:0,statusText:'',getStatus:Ajax.Request.prototype.getStatus,getStatusText:function(){try{return this.transport.statusText||'';}catch(e){return''}},getHeader:Ajax.Request.prototype.getHeader,getAllHeaders:function(){try{return this.getAllResponseHeaders();}catch(e){return null}},getResponseHeader:function(name){return this.transport.getResponseHeader(name);},getAllResponseHeaders:function(){return this.transport.getAllResponseHeaders();},_getHeaderJSON:function(){var json=this.getHeader('X-JSON');if(!json)return null;json=decodeURIComponent(escape(json));try{return json.evalJSON(this.request.options.sanitizeJSON||!this.request.isSameOrigin());}catch(e){this.request.dispatchException(e);}},_getResponseJSON:function(){var options=this.request.options;if(!options.evalJSON||(options.evalJSON!='force'&&!(this.getHeader('Content-type')||'').include('application/json'))||this.responseText.blank())
return null;try{return this.responseText.evalJSON(options.sanitizeJSON||!this.request.isSameOrigin());}catch(e){this.request.dispatchException(e);}}});Ajax.Updater=Class.create(Ajax.Request,{initialize:function($super,container,url,options){this.container={success:(container.success||container),failure:(container.failure||(container.success?null:container))};options=Object.clone(options);var onComplete=options.onComplete;options.onComplete=(function(response,json){this.updateContent(response.responseText);if(Object.isFunction(onComplete))onComplete(response,json);}).bind(this);$super(url,options);},updateContent:function(responseText){var receiver=this.container[this.success()?'success':'failure'],options=this.options;if(!options.evalScripts)responseText=responseText.stripScripts();if(receiver=$(receiver)){if(options.insertion){if(Object.isString(options.insertion)){var insertion={};insertion[options.insertion]=responseText;receiver.insert(insertion);}
else options.insertion(receiver,responseText);}
else receiver.update(responseText);}}});Ajax.PeriodicalUpdater=Class.create(Ajax.Base,{initialize:function($super,container,url,options){$super(options);this.onComplete=this.options.onComplete;this.frequency=(this.options.frequency||2);this.decay=(this.options.decay||1);this.updater={};this.container=container;this.url=url;this.start();},start:function(){this.options.onComplete=this.updateComplete.bind(this);this.onTimerEvent();},stop:function(){this.updater.options.onComplete=undefined;clearTimeout(this.timer);(this.onComplete||Prototype.emptyFunction).apply(this,arguments);},updateComplete:function(response){if(this.options.decay){this.decay=(response.responseText==this.lastText?this.decay*this.options.decay:1);this.lastText=response.responseText;}
this.timer=this.onTimerEvent.bind(this).delay(this.decay*this.frequency);},onTimerEvent:function(){this.updater=new Ajax.Updater(this.container,this.url,this.options);}});function $(element){if(arguments.length>1){for(var i=0,elements=[],length=arguments.length;i<length;i++)
elements.push($(arguments[i]));return elements;}
if(Object.isString(element))
element=document.getElementById(element);return Element.extend(element);}
if(Prototype.BrowserFeatures.XPath){document._getElementsByXPath=function(expression,parentElement){var results=[];var query=document.evaluate(expression,$(parentElement)||document,null,XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,null);for(var i=0,length=query.snapshotLength;i<length;i++)
results.push(Element.extend(query.snapshotItem(i)));return results;};}
if(!window.Node)var Node={};if(!Node.ELEMENT_NODE){Object.extend(Node,{ELEMENT_NODE:1,ATTRIBUTE_NODE:2,TEXT_NODE:3,CDATA_SECTION_NODE:4,ENTITY_REFERENCE_NODE:5,ENTITY_NODE:6,PROCESSING_INSTRUCTION_NODE:7,COMMENT_NODE:8,DOCUMENT_NODE:9,DOCUMENT_TYPE_NODE:10,DOCUMENT_FRAGMENT_NODE:11,NOTATION_NODE:12});}
(function(){var element=this.Element;this.Element=function(tagName,attributes){attributes=attributes||{};tagName=tagName.toLowerCase();var cache=Element.cache;if(Prototype.Browser.IE&&attributes.name){tagName='<'+tagName+' name="'+attributes.name+'">';delete attributes.name;return Element.writeAttribute(document.createElement(tagName),attributes);}
if(!cache[tagName])cache[tagName]=Element.extend(document.createElement(tagName));return Element.writeAttribute(cache[tagName].cloneNode(false),attributes);};Object.extend(this.Element,element||{});if(element)this.Element.prototype=element.prototype;}).call(window);Element.cache={};Element.Methods={visible:function(element){return $(element).style.display!='none';},toggle:function(element){element=$(element);Element[Element.visible(element)?'hide':'show'](element);return element;},hide:function(element){element=$(element);element.style.display='none';return element;},show:function(element){element=$(element);element.style.display='';return element;},remove:function(element){element=$(element);element.parentNode.removeChild(element);return element;},update:function(element,content){element=$(element);if(content&&content.toElement)content=content.toElement();if(Object.isElement(content))return element.update().insert(content);content=Object.toHTML(content);element.innerHTML=content.stripScripts();content.evalScripts.bind(content).defer();return element;},replace:function(element,content){element=$(element);if(content&&content.toElement)content=content.toElement();else if(!Object.isElement(content)){content=Object.toHTML(content);var range=element.ownerDocument.createRange();range.selectNode(element);content.evalScripts.bind(content).defer();content=range.createContextualFragment(content.stripScripts());}
element.parentNode.replaceChild(content,element);return element;},insert:function(element,insertions){element=$(element);if(Object.isString(insertions)||Object.isNumber(insertions)||Object.isElement(insertions)||(insertions&&(insertions.toElement||insertions.toHTML)))
insertions={bottom:insertions};var content,insert,tagName,childNodes;for(var position in insertions){content=insertions[position];position=position.toLowerCase();insert=Element._insertionTranslations[position];if(content&&content.toElement)content=content.toElement();if(Object.isElement(content)){insert(element,content);continue;}
content=Object.toHTML(content);tagName=((position=='before'||position=='after')?element.parentNode:element).tagName.toUpperCase();childNodes=Element._getContentFromAnonymousElement(tagName,content.stripScripts());if(position=='top'||position=='after')childNodes.reverse();childNodes.each(insert.curry(element));content.evalScripts.bind(content).defer();}
return element;},wrap:function(element,wrapper,attributes){element=$(element);if(Object.isElement(wrapper))
$(wrapper).writeAttribute(attributes||{});else if(Object.isString(wrapper))wrapper=new Element(wrapper,attributes);else wrapper=new Element('div',wrapper);if(element.parentNode)
element.parentNode.replaceChild(wrapper,element);wrapper.appendChild(element);return wrapper;},inspect:function(element){element=$(element);var result='<'+element.tagName.toLowerCase();$H({'id':'id','className':'class'}).each(function(pair){var property=pair.first(),attribute=pair.last();var value=(element[property]||'').toString();if(value)result+=' '+attribute+'='+value.inspect(true);});return result+'>';},recursivelyCollect:function(element,property){element=$(element);var elements=[];while(element=element[property])
if(element.nodeType==1)
elements.push(Element.extend(element));return elements;},ancestors:function(element){return $(element).recursivelyCollect('parentNode');},descendants:function(element){return $(element).select("*");},firstDescendant:function(element){element=$(element).firstChild;while(element&&element.nodeType!=1)element=element.nextSibling;return $(element);},immediateDescendants:function(element){if(!(element=$(element).firstChild))return[];while(element&&element.nodeType!=1)element=element.nextSibling;if(element)return[element].concat($(element).nextSiblings());return[];},previousSiblings:function(element){return $(element).recursivelyCollect('previousSibling');},nextSiblings:function(element){return $(element).recursivelyCollect('nextSibling');},siblings:function(element){element=$(element);return element.previousSiblings().reverse().concat(element.nextSiblings());},match:function(element,selector){if(Object.isString(selector))
selector=new Selector(selector);return selector.match($(element));},up:function(element,expression,index){element=$(element);if(arguments.length==1)return $(element.parentNode);var ancestors=element.ancestors();return Object.isNumber(expression)?ancestors[expression]:Selector.findElement(ancestors,expression,index);},down:function(element,expression,index){element=$(element);if(arguments.length==1)return element.firstDescendant();return Object.isNumber(expression)?element.descendants()[expression]:Element.select(element,expression)[index||0];},previous:function(element,expression,index){element=$(element);if(arguments.length==1)return $(Selector.handlers.previousElementSibling(element));var previousSiblings=element.previousSiblings();return Object.isNumber(expression)?previousSiblings[expression]:Selector.findElement(previousSiblings,expression,index);},next:function(element,expression,index){element=$(element);if(arguments.length==1)return $(Selector.handlers.nextElementSibling(element));var nextSiblings=element.nextSiblings();return Object.isNumber(expression)?nextSiblings[expression]:Selector.findElement(nextSiblings,expression,index);},select:function(){var args=$A(arguments),element=$(args.shift());return Selector.findChildElements(element,args);},adjacent:function(){var args=$A(arguments),element=$(args.shift());return Selector.findChildElements(element.parentNode,args).without(element);},identify:function(element){element=$(element);var id=element.readAttribute('id'),self=arguments.callee;if(id)return id;do{id='anonymous_element_'+self.counter++}while($(id));element.writeAttribute('id',id);return id;},readAttribute:function(element,name){element=$(element);if(Prototype.Browser.IE){var t=Element._attributeTranslations.read;if(t.values[name])return t.values[name](element,name);if(t.names[name])name=t.names[name];if(name.include(':')){return(!element.attributes||!element.attributes[name])?null:element.attributes[name].value;}}
return element.getAttribute(name);},writeAttribute:function(element,name,value){element=$(element);var attributes={},t=Element._attributeTranslations.write;if(typeof name=='object')attributes=name;else attributes[name]=Object.isUndefined(value)?true:value;for(var attr in attributes){name=t.names[attr]||attr;value=attributes[attr];if(t.values[attr])name=t.values[attr](element,value);if(value===false||value===null)
element.removeAttribute(name);else if(value===true)
element.setAttribute(name,name);else element.setAttribute(name,value);}
return element;},getHeight:function(element){return $(element).getDimensions().height;},getWidth:function(element){return $(element).getDimensions().width;},classNames:function(element){return new Element.ClassNames(element);},hasClassName:function(element,className){if(!(element=$(element)))return;var elementClassName=element.className;return(elementClassName.length>0&&(elementClassName==className||new RegExp("(^|\\s)"+className+"(\\s|$)").test(elementClassName)));},addClassName:function(element,className){if(!(element=$(element)))return;if(!element.hasClassName(className))
element.className+=(element.className?' ':'')+className;return element;},removeClassName:function(element,className){if(!(element=$(element)))return;element.className=element.className.replace(new RegExp("(^|\\s+)"+className+"(\\s+|$)"),' ').strip();return element;},toggleClassName:function(element,className){if(!(element=$(element)))return;return element[element.hasClassName(className)?'removeClassName':'addClassName'](className);},cleanWhitespace:function(element){element=$(element);var node=element.firstChild;while(node){var nextNode=node.nextSibling;if(node.nodeType==3&&!/\S/.test(node.nodeValue))
element.removeChild(node);node=nextNode;}
return element;},empty:function(element){return $(element).innerHTML.blank();},descendantOf:function(element,ancestor){element=$(element),ancestor=$(ancestor);if(element.compareDocumentPosition)
return(element.compareDocumentPosition(ancestor)&8)===8;if(ancestor.contains)
return ancestor.contains(element)&&ancestor!==element;while(element=element.parentNode)
if(element==ancestor)return true;return false;},scrollTo:function(element){element=$(element);var pos=element.cumulativeOffset();window.scrollTo(pos[0],pos[1]);return element;},getStyle:function(element,style){element=$(element);style=style=='float'?'cssFloat':style.camelize();var value=element.style[style];if(!value||value=='auto'){var css=document.defaultView.getComputedStyle(element,null);value=css?css[style]:null;}
if(style=='opacity')return value?parseFloat(value):1.0;return value=='auto'?null:value;},getOpacity:function(element){return $(element).getStyle('opacity');},setStyle:function(element,styles){element=$(element);var elementStyle=element.style,match;if(Object.isString(styles)){element.style.cssText+=';'+styles;return styles.include('opacity')?element.setOpacity(styles.match(/opacity:\s*(\d?\.?\d*)/)[1]):element;}
for(var property in styles)
if(property=='opacity')element.setOpacity(styles[property]);else
elementStyle[(property=='float'||property=='cssFloat')?(Object.isUndefined(elementStyle.styleFloat)?'cssFloat':'styleFloat'):property]=styles[property];return element;},setOpacity:function(element,value){element=$(element);element.style.opacity=(value==1||value==='')?'':(value<0.00001)?0:value;return element;},getDimensions:function(element){element=$(element);var display=element.getStyle('display');if(display!='none'&&display!=null)
return{width:element.offsetWidth,height:element.offsetHeight};var els=element.style;var originalVisibility=els.visibility;var originalPosition=els.position;var originalDisplay=els.display;els.visibility='hidden';els.position='absolute';els.display='block';var originalWidth=element.clientWidth;var originalHeight=element.clientHeight;els.display=originalDisplay;els.position=originalPosition;els.visibility=originalVisibility;return{width:originalWidth,height:originalHeight};},makePositioned:function(element){element=$(element);var pos=Element.getStyle(element,'position');if(pos=='static'||!pos){element._madePositioned=true;element.style.position='relative';if(Prototype.Browser.Opera){element.style.top=0;element.style.left=0;}}
return element;},undoPositioned:function(element){element=$(element);if(element._madePositioned){element._madePositioned=undefined;element.style.position=element.style.top=element.style.left=element.style.bottom=element.style.right='';}
return element;},makeClipping:function(element){element=$(element);if(element._overflow)return element;element._overflow=Element.getStyle(element,'overflow')||'auto';if(element._overflow!=='hidden')
element.style.overflow='hidden';return element;},undoClipping:function(element){element=$(element);if(!element._overflow)return element;element.style.overflow=element._overflow=='auto'?'':element._overflow;element._overflow=null;return element;},cumulativeOffset:function(element){var valueT=0,valueL=0;do{valueT+=element.offsetTop||0;valueL+=element.offsetLeft||0;element=element.offsetParent;}while(element);return Element._returnOffset(valueL,valueT);},positionedOffset:function(element){var valueT=0,valueL=0;do{valueT+=element.offsetTop||0;valueL+=element.offsetLeft||0;element=element.offsetParent;if(element){if(element.tagName.toUpperCase()=='BODY')break;var p=Element.getStyle(element,'position');if(p!=='static')break;}}while(element);return Element._returnOffset(valueL,valueT);},absolutize:function(element){element=$(element);if(element.getStyle('position')=='absolute')return element;var offsets=element.positionedOffset();var top=offsets[1];var left=offsets[0];var width=element.clientWidth;var height=element.clientHeight;element._originalLeft=left-parseFloat(element.style.left||0);element._originalTop=top-parseFloat(element.style.top||0);element._originalWidth=element.style.width;element._originalHeight=element.style.height;element.style.position='absolute';element.style.top=top+'px';element.style.left=left+'px';element.style.width=width+'px';element.style.height=height+'px';return element;},relativize:function(element){element=$(element);if(element.getStyle('position')=='relative')return element;element.style.position='relative';var top=parseFloat(element.style.top||0)-(element._originalTop||0);var left=parseFloat(element.style.left||0)-(element._originalLeft||0);element.style.top=top+'px';element.style.left=left+'px';element.style.height=element._originalHeight;element.style.width=element._originalWidth;return element;},cumulativeScrollOffset:function(element){var valueT=0,valueL=0;do{valueT+=element.scrollTop||0;valueL+=element.scrollLeft||0;element=element.parentNode;}while(element);return Element._returnOffset(valueL,valueT);},getOffsetParent:function(element){if(element.offsetParent)return $(element.offsetParent);if(element==document.body)return $(element);while((element=element.parentNode)&&element!=document.body)
if(Element.getStyle(element,'position')!='static')
return $(element);return $(document.body);},viewportOffset:function(forElement){var valueT=0,valueL=0;var element=forElement;do{valueT+=element.offsetTop||0;valueL+=element.offsetLeft||0;if(element.offsetParent==document.body&&Element.getStyle(element,'position')=='absolute')break;}while(element=element.offsetParent);element=forElement;do{if(!Prototype.Browser.Opera||(element.tagName&&(element.tagName.toUpperCase()=='BODY'))){valueT-=element.scrollTop||0;valueL-=element.scrollLeft||0;}}while(element=element.parentNode);return Element._returnOffset(valueL,valueT);},clonePosition:function(element,source){var options=Object.extend({setLeft:true,setTop:true,setWidth:true,setHeight:true,offsetTop:0,offsetLeft:0},arguments[2]||{});source=$(source);var p=source.viewportOffset();element=$(element);var delta=[0,0];var parent=null;if(Element.getStyle(element,'position')=='absolute'){parent=element.getOffsetParent();delta=parent.viewportOffset();}
if(parent==document.body){delta[0]-=document.body.offsetLeft;delta[1]-=document.body.offsetTop;}
if(options.setLeft)element.style.left=(p[0]-delta[0]+options.offsetLeft)+'px';if(options.setTop)element.style.top=(p[1]-delta[1]+options.offsetTop)+'px';if(options.setWidth)element.style.width=source.offsetWidth+'px';if(options.setHeight)element.style.height=source.offsetHeight+'px';return element;}};Element.Methods.identify.counter=1;Object.extend(Element.Methods,{getElementsBySelector:Element.Methods.select,childElements:Element.Methods.immediateDescendants});Element._attributeTranslations={write:{names:{className:'class',htmlFor:'for'},values:{}}};if(Prototype.Browser.Opera){Element.Methods.getStyle=Element.Methods.getStyle.wrap(function(proceed,element,style){switch(style){case'left':case'top':case'right':case'bottom':if(proceed(element,'position')==='static')return null;case'height':case'width':if(!Element.visible(element))return null;var dim=parseInt(proceed(element,style),10);if(dim!==element['offset'+style.capitalize()])
return dim+'px';var properties;if(style==='height'){properties=['border-top-width','padding-top','padding-bottom','border-bottom-width'];}
else{properties=['border-left-width','padding-left','padding-right','border-right-width'];}
return properties.inject(dim,function(memo,property){var val=proceed(element,property);return val===null?memo:memo-parseInt(val,10);})+'px';default:return proceed(element,style);}});Element.Methods.readAttribute=Element.Methods.readAttribute.wrap(function(proceed,element,attribute){if(attribute==='title')return element.title;return proceed(element,attribute);});}
else if(Prototype.Browser.IE){Element.Methods.getOffsetParent=Element.Methods.getOffsetParent.wrap(function(proceed,element){element=$(element);try{element.offsetParent}
catch(e){return $(document.body)}
var position=element.getStyle('position');if(position!=='static')return proceed(element);element.setStyle({position:'relative'});var value=proceed(element);element.setStyle({position:position});return value;});$w('positionedOffset viewportOffset').each(function(method){Element.Methods[method]=Element.Methods[method].wrap(function(proceed,element){element=$(element);try{element.offsetParent}
catch(e){return Element._returnOffset(0,0)}
var position=element.getStyle('position');if(position!=='static')return proceed(element);var offsetParent=element.getOffsetParent();if(offsetParent&&offsetParent.getStyle('position')==='fixed')
offsetParent.setStyle({zoom:1});element.setStyle({position:'relative'});var value=proceed(element);element.setStyle({position:position});return value;});});Element.Methods.cumulativeOffset=Element.Methods.cumulativeOffset.wrap(function(proceed,element){try{element.offsetParent}
catch(e){return Element._returnOffset(0,0)}
return proceed(element);});Element.Methods.getStyle=function(element,style){element=$(element);style=(style=='float'||style=='cssFloat')?'styleFloat':style.camelize();var value=element.style[style];if(!value&&element.currentStyle)value=element.currentStyle[style];if(style=='opacity'){if(value=(element.getStyle('filter')||'').match(/alpha\(opacity=(.*)\)/))
if(value[1])return parseFloat(value[1])/100;return 1.0;}
if(value=='auto'){if((style=='width'||style=='height')&&(element.getStyle('display')!='none'))
return element['offset'+style.capitalize()]+'px';return null;}
return value;};Element.Methods.setOpacity=function(element,value){function stripAlpha(filter){return filter.replace(/alpha\([^\)]*\)/gi,'');}
element=$(element);var currentStyle=element.currentStyle;if((currentStyle&&!currentStyle.hasLayout)||(!currentStyle&&element.style.zoom=='normal'))
element.style.zoom=1;var filter=element.getStyle('filter'),style=element.style;if(value==1||value===''){(filter=stripAlpha(filter))?style.filter=filter:style.removeAttribute('filter');return element;}else if(value<0.00001)value=0;style.filter=stripAlpha(filter)+'alpha(opacity='+(value*100)+')';return element;};Element._attributeTranslations={read:{names:{'class':'className','for':'htmlFor'},values:{_getAttr:function(element,attribute){return element.getAttribute(attribute,2);},_getAttrNode:function(element,attribute){var node=element.getAttributeNode(attribute);return node?node.value:"";},_getEv:function(element,attribute){attribute=element.getAttribute(attribute);return attribute?attribute.toString().slice(23,-2):null;},_flag:function(element,attribute){return $(element).hasAttribute(attribute)?attribute:null;},style:function(element){return element.style.cssText.toLowerCase();},title:function(element){return element.title;}}}};Element._attributeTranslations.write={names:Object.extend({cellpadding:'cellPadding',cellspacing:'cellSpacing'},Element._attributeTranslations.read.names),values:{checked:function(element,value){element.checked=!!value;},style:function(element,value){element.style.cssText=value?value:'';}}};Element._attributeTranslations.has={};$w('colSpan rowSpan vAlign dateTime accessKey tabIndex '+'encType maxLength readOnly longDesc frameBorder').each(function(attr){Element._attributeTranslations.write.names[attr.toLowerCase()]=attr;Element._attributeTranslations.has[attr.toLowerCase()]=attr;});(function(v){Object.extend(v,{href:v._getAttr,src:v._getAttr,type:v._getAttr,action:v._getAttrNode,disabled:v._flag,checked:v._flag,readonly:v._flag,multiple:v._flag,onload:v._getEv,onunload:v._getEv,onclick:v._getEv,ondblclick:v._getEv,onmousedown:v._getEv,onmouseup:v._getEv,onmouseover:v._getEv,onmousemove:v._getEv,onmouseout:v._getEv,onfocus:v._getEv,onblur:v._getEv,onkeypress:v._getEv,onkeydown:v._getEv,onkeyup:v._getEv,onsubmit:v._getEv,onreset:v._getEv,onselect:v._getEv,onchange:v._getEv});})(Element._attributeTranslations.read.values);}
else if(Prototype.Browser.Gecko&&/rv:1\.8\.0/.test(navigator.userAgent)){Element.Methods.setOpacity=function(element,value){element=$(element);element.style.opacity=(value==1)?0.999999:(value==='')?'':(value<0.00001)?0:value;return element;};}
else if(Prototype.Browser.WebKit){Element.Methods.setOpacity=function(element,value){element=$(element);element.style.opacity=(value==1||value==='')?'':(value<0.00001)?0:value;if(value==1)
if(element.tagName.toUpperCase()=='IMG'&&element.width){element.width++;element.width--;}else try{var n=document.createTextNode(' ');element.appendChild(n);element.removeChild(n);}catch(e){}
return element;};Element.Methods.cumulativeOffset=function(element){var valueT=0,valueL=0;do{valueT+=element.offsetTop||0;valueL+=element.offsetLeft||0;if(element.offsetParent==document.body)
if(Element.getStyle(element,'position')=='absolute')break;element=element.offsetParent;}while(element);return Element._returnOffset(valueL,valueT);};}
if(Prototype.Browser.IE||Prototype.Browser.Opera){Element.Methods.update=function(element,content){element=$(element);if(content&&content.toElement)content=content.toElement();if(Object.isElement(content))return element.update().insert(content);content=Object.toHTML(content);var tagName=element.tagName.toUpperCase();if(tagName in Element._insertionTranslations.tags){$A(element.childNodes).each(function(node){element.removeChild(node)});Element._getContentFromAnonymousElement(tagName,content.stripScripts()).each(function(node){element.appendChild(node)});}
else element.innerHTML=content.stripScripts();content.evalScripts.bind(content).defer();return element;};}
if('outerHTML'in document.createElement('div')){Element.Methods.replace=function(element,content){element=$(element);if(content&&content.toElement)content=content.toElement();if(Object.isElement(content)){element.parentNode.replaceChild(content,element);return element;}
content=Object.toHTML(content);var parent=element.parentNode,tagName=parent.tagName.toUpperCase();if(Element._insertionTranslations.tags[tagName]){var nextSibling=element.next();var fragments=Element._getContentFromAnonymousElement(tagName,content.stripScripts());parent.removeChild(element);if(nextSibling)
fragments.each(function(node){parent.insertBefore(node,nextSibling)});else
fragments.each(function(node){parent.appendChild(node)});}
else element.outerHTML=content.stripScripts();content.evalScripts.bind(content).defer();return element;};}
Element._returnOffset=function(l,t){var result=[l,t];result.left=l;result.top=t;return result;};Element._getContentFromAnonymousElement=function(tagName,html){var div=new Element('div'),t=Element._insertionTranslations.tags[tagName];if(t){div.innerHTML=t[0]+html+t[1];t[2].times(function(){div=div.firstChild});}else div.innerHTML=html;return $A(div.childNodes);};Element._insertionTranslations={before:function(element,node){element.parentNode.insertBefore(node,element);},top:function(element,node){element.insertBefore(node,element.firstChild);},bottom:function(element,node){element.appendChild(node);},after:function(element,node){element.parentNode.insertBefore(node,element.nextSibling);},tags:{TABLE:['<table>','</table>',1],TBODY:['<table><tbody>','</tbody></table>',2],TR:['<table><tbody><tr>','</tr></tbody></table>',3],TD:['<table><tbody><tr><td>','</td></tr></tbody></table>',4],SELECT:['<select>','</select>',1]}};(function(){Object.extend(this.tags,{THEAD:this.tags.TBODY,TFOOT:this.tags.TBODY,TH:this.tags.TD});}).call(Element._insertionTranslations);Element.Methods.Simulated={hasAttribute:function(element,attribute){attribute=Element._attributeTranslations.has[attribute]||attribute;var node=$(element).getAttributeNode(attribute);return!!(node&&node.specified);}};Element.Methods.ByTag={};Object.extend(Element,Element.Methods);if(!Prototype.BrowserFeatures.ElementExtensions&&document.createElement('div')['__proto__']){window.HTMLElement={};window.HTMLElement.prototype=document.createElement('div')['__proto__'];Prototype.BrowserFeatures.ElementExtensions=true;}
Element.extend=(function(){if(Prototype.BrowserFeatures.SpecificElementExtensions)
return Prototype.K;var Methods={},ByTag=Element.Methods.ByTag;var extend=Object.extend(function(element){if(!element||element._extendedByPrototype||element.nodeType!=1||element==window)return element;var methods=Object.clone(Methods),tagName=element.tagName.toUpperCase(),property,value;if(ByTag[tagName])Object.extend(methods,ByTag[tagName]);for(property in methods){value=methods[property];if(Object.isFunction(value)&&!(property in element))
element[property]=value.methodize();}
element._extendedByPrototype=Prototype.emptyFunction;return element;},{refresh:function(){if(!Prototype.BrowserFeatures.ElementExtensions){Object.extend(Methods,Element.Methods);Object.extend(Methods,Element.Methods.Simulated);}}});extend.refresh();return extend;})();Element.hasAttribute=function(element,attribute){if(element.hasAttribute)return element.hasAttribute(attribute);return Element.Methods.Simulated.hasAttribute(element,attribute);};Element.addMethods=function(methods){var F=Prototype.BrowserFeatures,T=Element.Methods.ByTag;if(!methods){Object.extend(Form,Form.Methods);Object.extend(Form.Element,Form.Element.Methods);Object.extend(Element.Methods.ByTag,{"FORM":Object.clone(Form.Methods),"INPUT":Object.clone(Form.Element.Methods),"SELECT":Object.clone(Form.Element.Methods),"TEXTAREA":Object.clone(Form.Element.Methods)});}
if(arguments.length==2){var tagName=methods;methods=arguments[1];}
if(!tagName)Object.extend(Element.Methods,methods||{});else{if(Object.isArray(tagName))tagName.each(extend);else extend(tagName);}
function extend(tagName){tagName=tagName.toUpperCase();if(!Element.Methods.ByTag[tagName])
Element.Methods.ByTag[tagName]={};Object.extend(Element.Methods.ByTag[tagName],methods);}
function copy(methods,destination,onlyIfAbsent){onlyIfAbsent=onlyIfAbsent||false;for(var property in methods){var value=methods[property];if(!Object.isFunction(value))continue;if(!onlyIfAbsent||!(property in destination))
destination[property]=value.methodize();}}
function findDOMClass(tagName){var klass;var trans={"OPTGROUP":"OptGroup","TEXTAREA":"TextArea","P":"Paragraph","FIELDSET":"FieldSet","UL":"UList","OL":"OList","DL":"DList","DIR":"Directory","H1":"Heading","H2":"Heading","H3":"Heading","H4":"Heading","H5":"Heading","H6":"Heading","Q":"Quote","INS":"Mod","DEL":"Mod","A":"Anchor","IMG":"Image","CAPTION":"TableCaption","COL":"TableCol","COLGROUP":"TableCol","THEAD":"TableSection","TFOOT":"TableSection","TBODY":"TableSection","TR":"TableRow","TH":"TableCell","TD":"TableCell","FRAMESET":"FrameSet","IFRAME":"IFrame"};if(trans[tagName])klass='HTML'+trans[tagName]+'Element';if(window[klass])return window[klass];klass='HTML'+tagName+'Element';if(window[klass])return window[klass];klass='HTML'+tagName.capitalize()+'Element';if(window[klass])return window[klass];window[klass]={};window[klass].prototype=document.createElement(tagName)['__proto__'];return window[klass];}
if(F.ElementExtensions){copy(Element.Methods,HTMLElement.prototype);copy(Element.Methods.Simulated,HTMLElement.prototype,true);}
if(F.SpecificElementExtensions){for(var tag in Element.Methods.ByTag){var klass=findDOMClass(tag);if(Object.isUndefined(klass))continue;copy(T[tag],klass.prototype);}}
Object.extend(Element,Element.Methods);delete Element.ByTag;if(Element.extend.refresh)Element.extend.refresh();Element.cache={};};document.viewport={getDimensions:function(){var dimensions={},B=Prototype.Browser;$w('width height').each(function(d){var D=d.capitalize();if(B.WebKit&&!document.evaluate){dimensions[d]=self['inner'+D];}else if(B.Opera&&parseFloat(window.opera.version())<9.5){dimensions[d]=document.body['client'+D]}else{dimensions[d]=document.documentElement['client'+D];}});return dimensions;},getWidth:function(){return this.getDimensions().width;},getHeight:function(){return this.getDimensions().height;},getScrollOffsets:function(){return Element._returnOffset(window.pageXOffset||document.documentElement.scrollLeft||document.body.scrollLeft,window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop);}};var Selector=Class.create({initialize:function(expression){this.expression=expression.strip();if(this.shouldUseSelectorsAPI()){this.mode='selectorsAPI';}else if(this.shouldUseXPath()){this.mode='xpath';this.compileXPathMatcher();}else{this.mode="normal";this.compileMatcher();}},shouldUseXPath:function(){if(!Prototype.BrowserFeatures.XPath)return false;var e=this.expression;if(Prototype.Browser.WebKit&&(e.include("-of-type")||e.include(":empty")))
return false;if((/(\[[\w-]*?:|:checked)/).test(e))
return false;return true;},shouldUseSelectorsAPI:function(){if(!Prototype.BrowserFeatures.SelectorsAPI)return false;if(!Selector._div)Selector._div=new Element('div');try{Selector._div.querySelector(this.expression);}catch(e){return false;}
return true;},compileMatcher:function(){var e=this.expression,ps=Selector.patterns,h=Selector.handlers,c=Selector.criteria,le,p,m;if(Selector._cache[e]){this.matcher=Selector._cache[e];return;}
this.matcher=["this.matcher = function(root) {","var r = root, h = Selector.handlers, c = false, n;"];while(e&&le!=e&&(/\S/).test(e)){le=e;for(var i in ps){p=ps[i];if(m=e.match(p)){this.matcher.push(Object.isFunction(c[i])?c[i](m):new Template(c[i]).evaluate(m));e=e.replace(m[0],'');break;}}}
this.matcher.push("return h.unique(n);\n}");eval(this.matcher.join('\n'));Selector._cache[this.expression]=this.matcher;},compileXPathMatcher:function(){var e=this.expression,ps=Selector.patterns,x=Selector.xpath,le,m;if(Selector._cache[e]){this.xpath=Selector._cache[e];return;}
this.matcher=['.//*'];while(e&&le!=e&&(/\S/).test(e)){le=e;for(var i in ps){if(m=e.match(ps[i])){this.matcher.push(Object.isFunction(x[i])?x[i](m):new Template(x[i]).evaluate(m));e=e.replace(m[0],'');break;}}}
this.xpath=this.matcher.join('');Selector._cache[this.expression]=this.xpath;},findElements:function(root){root=root||document;var e=this.expression,results;switch(this.mode){case'selectorsAPI':if(root!==document){var oldId=root.id,id=$(root).identify();e="#"+id+" "+e;}
results=$A(root.querySelectorAll(e)).map(Element.extend);root.id=oldId;return results;case'xpath':return document._getElementsByXPath(this.xpath,root);default:return this.matcher(root);}},match:function(element){this.tokens=[];var e=this.expression,ps=Selector.patterns,as=Selector.assertions;var le,p,m;while(e&&le!==e&&(/\S/).test(e)){le=e;for(var i in ps){p=ps[i];if(m=e.match(p)){if(as[i]){this.tokens.push([i,Object.clone(m)]);e=e.replace(m[0],'');}else{return this.findElements(document).include(element);}}}}
var match=true,name,matches;for(var i=0,token;token=this.tokens[i];i++){name=token[0],matches=token[1];if(!Selector.assertions[name](element,matches)){match=false;break;}}
return match;},toString:function(){return this.expression;},inspect:function(){return"#<Selector:"+this.expression.inspect()+">";}});Object.extend(Selector,{_cache:{},xpath:{descendant:"//*",child:"/*",adjacent:"/following-sibling::*[1]",laterSibling:'/following-sibling::*',tagName:function(m){if(m[1]=='*')return'';return"[local-name()='"+m[1].toLowerCase()+"' or local-name()='"+m[1].toUpperCase()+"']";},className:"[contains(concat(' ', @class, ' '), ' #{1} ')]",id:"[@id='#{1}']",attrPresence:function(m){m[1]=m[1].toLowerCase();return new Template("[@#{1}]").evaluate(m);},attr:function(m){m[1]=m[1].toLowerCase();m[3]=m[5]||m[6];return new Template(Selector.xpath.operators[m[2]]).evaluate(m);},pseudo:function(m){var h=Selector.xpath.pseudos[m[1]];if(!h)return'';if(Object.isFunction(h))return h(m);return new Template(Selector.xpath.pseudos[m[1]]).evaluate(m);},operators:{'=':"[@#{1}='#{3}']",'!=':"[@#{1}!='#{3}']",'^=':"[starts-with(@#{1}, '#{3}')]",'$=':"[substring(@#{1}, (string-length(@#{1}) - string-length('#{3}') + 1))='#{3}']",'*=':"[contains(@#{1}, '#{3}')]",'~=':"[contains(concat(' ', @#{1}, ' '), ' #{3} ')]",'|=':"[contains(concat('-', @#{1}, '-'), '-#{3}-')]"},pseudos:{'first-child':'[not(preceding-sibling::*)]','last-child':'[not(following-sibling::*)]','only-child':'[not(preceding-sibling::* or following-sibling::*)]','empty':"[count(*) = 0 and (count(text()) = 0)]",'checked':"[@checked]",'disabled':"[(@disabled) and (@type!='hidden')]",'enabled':"[not(@disabled) and (@type!='hidden')]",'not':function(m){var e=m[6],p=Selector.patterns,x=Selector.xpath,le,v;var exclusion=[];while(e&&le!=e&&(/\S/).test(e)){le=e;for(var i in p){if(m=e.match(p[i])){v=Object.isFunction(x[i])?x[i](m):new Template(x[i]).evaluate(m);exclusion.push("("+v.substring(1,v.length-1)+")");e=e.replace(m[0],'');break;}}}
return"[not("+exclusion.join(" and ")+")]";},'nth-child':function(m){return Selector.xpath.pseudos.nth("(count(./preceding-sibling::*) + 1) ",m);},'nth-last-child':function(m){return Selector.xpath.pseudos.nth("(count(./following-sibling::*) + 1) ",m);},'nth-of-type':function(m){return Selector.xpath.pseudos.nth("position() ",m);},'nth-last-of-type':function(m){return Selector.xpath.pseudos.nth("(last() + 1 - position()) ",m);},'first-of-type':function(m){m[6]="1";return Selector.xpath.pseudos['nth-of-type'](m);},'last-of-type':function(m){m[6]="1";return Selector.xpath.pseudos['nth-last-of-type'](m);},'only-of-type':function(m){var p=Selector.xpath.pseudos;return p['first-of-type'](m)+p['last-of-type'](m);},nth:function(fragment,m){var mm,formula=m[6],predicate;if(formula=='even')formula='2n+0';if(formula=='odd')formula='2n+1';if(mm=formula.match(/^(\d+)$/))
return'['+fragment+"= "+mm[1]+']';if(mm=formula.match(/^(-?\d*)?n(([+-])(\d+))?/)){if(mm[1]=="-")mm[1]=-1;var a=mm[1]?Number(mm[1]):1;var b=mm[2]?Number(mm[2]):0;predicate="[((#{fragment} - #{b}) mod #{a} = 0) and "+"((#{fragment} - #{b}) div #{a} >= 0)]";return new Template(predicate).evaluate({fragment:fragment,a:a,b:b});}}}},criteria:{tagName:'n = h.tagName(n, r, "#{1}", c);      c = false;',className:'n = h.className(n, r, "#{1}", c);    c = false;',id:'n = h.id(n, r, "#{1}", c);           c = false;',attrPresence:'n = h.attrPresence(n, r, "#{1}", c); c = false;',attr:function(m){m[3]=(m[5]||m[6]);return new Template('n = h.attr(n, r, "#{1}", "#{3}", "#{2}", c); c = false;').evaluate(m);},pseudo:function(m){if(m[6])m[6]=m[6].replace(/"/g,'\\"');return new Template('n = h.pseudo(n, "#{1}", "#{6}", r, c); c = false;').evaluate(m);},descendant:'c = "descendant";',child:'c = "child";',adjacent:'c = "adjacent";',laterSibling:'c = "laterSibling";'},patterns:{laterSibling:/^\s*~\s*/,child:/^\s*>\s*/,adjacent:/^\s*\+\s*/,descendant:/^\s/,tagName:/^\s*(\*|[\w\-]+)(\b|$)?/,id:/^#([\w\-\*]+)(\b|$)/,className:/^\.([\w\-\*]+)(\b|$)/,pseudo:/^:((first|last|nth|nth-last|only)(-child|-of-type)|empty|checked|(en|dis)abled|not)(\((.*?)\))?(\b|$|(?=\s|[:+~>]))/,attrPresence:/^\[((?:[\w]+:)?[\w]+)\]/,attr:/\[((?:[\w-]*:)?[\w-]+)\s*(?:([!^$*~|]?=)\s*((['"])([^\4]*?)\4|([^'"][^\]]*?)))?\]/},assertions:{tagName:function(element,matches){return matches[1].toUpperCase()==element.tagName.toUpperCase();},className:function(element,matches){return Element.hasClassName(element,matches[1]);},id:function(element,matches){return element.id===matches[1];},attrPresence:function(element,matches){return Element.hasAttribute(element,matches[1]);},attr:function(element,matches){var nodeValue=Element.readAttribute(element,matches[1]);return nodeValue&&Selector.operators[matches[2]](nodeValue,matches[5]||matches[6]);}},handlers:{concat:function(a,b){for(var i=0,node;node=b[i];i++)
a.push(node);return a;},mark:function(nodes){var _true=Prototype.emptyFunction;for(var i=0,node;node=nodes[i];i++)
node._countedByPrototype=_true;return nodes;},unmark:function(nodes){for(var i=0,node;node=nodes[i];i++)
node._countedByPrototype=undefined;return nodes;},index:function(parentNode,reverse,ofType){parentNode._countedByPrototype=Prototype.emptyFunction;if(reverse){for(var nodes=parentNode.childNodes,i=nodes.length-1,j=1;i>=0;i--){var node=nodes[i];if(node.nodeType==1&&(!ofType||node._countedByPrototype))node.nodeIndex=j++;}}else{for(var i=0,j=1,nodes=parentNode.childNodes;node=nodes[i];i++)
if(node.nodeType==1&&(!ofType||node._countedByPrototype))node.nodeIndex=j++;}},unique:function(nodes){if(nodes.length==0)return nodes;var results=[],n;for(var i=0,l=nodes.length;i<l;i++)
if(!(n=nodes[i])._countedByPrototype){n._countedByPrototype=Prototype.emptyFunction;results.push(Element.extend(n));}
return Selector.handlers.unmark(results);},descendant:function(nodes){var h=Selector.handlers;for(var i=0,results=[],node;node=nodes[i];i++)
h.concat(results,node.getElementsByTagName('*'));return results;},child:function(nodes){var h=Selector.handlers;for(var i=0,results=[],node;node=nodes[i];i++){for(var j=0,child;child=node.childNodes[j];j++)
if(child.nodeType==1&&child.tagName!='!')results.push(child);}
return results;},adjacent:function(nodes){for(var i=0,results=[],node;node=nodes[i];i++){var next=this.nextElementSibling(node);if(next)results.push(next);}
return results;},laterSibling:function(nodes){var h=Selector.handlers;for(var i=0,results=[],node;node=nodes[i];i++)
h.concat(results,Element.nextSiblings(node));return results;},nextElementSibling:function(node){while(node=node.nextSibling)
if(node.nodeType==1)return node;return null;},previousElementSibling:function(node){while(node=node.previousSibling)
if(node.nodeType==1)return node;return null;},tagName:function(nodes,root,tagName,combinator){var uTagName=tagName.toUpperCase();var results=[],h=Selector.handlers;if(nodes){if(combinator){if(combinator=="descendant"){for(var i=0,node;node=nodes[i];i++)
h.concat(results,node.getElementsByTagName(tagName));return results;}else nodes=this[combinator](nodes);if(tagName=="*")return nodes;}
for(var i=0,node;node=nodes[i];i++)
if(node.tagName.toUpperCase()===uTagName)results.push(node);return results;}else return root.getElementsByTagName(tagName);},id:function(nodes,root,id,combinator){var targetNode=$(id),h=Selector.handlers;if(!targetNode)return[];if(!nodes&&root==document)return[targetNode];if(nodes){if(combinator){if(combinator=='child'){for(var i=0,node;node=nodes[i];i++)
if(targetNode.parentNode==node)return[targetNode];}else if(combinator=='descendant'){for(var i=0,node;node=nodes[i];i++)
if(Element.descendantOf(targetNode,node))return[targetNode];}else if(combinator=='adjacent'){for(var i=0,node;node=nodes[i];i++)
if(Selector.handlers.previousElementSibling(targetNode)==node)
return[targetNode];}else nodes=h[combinator](nodes);}
for(var i=0,node;node=nodes[i];i++)
if(node==targetNode)return[targetNode];return[];}
return(targetNode&&Element.descendantOf(targetNode,root))?[targetNode]:[];},className:function(nodes,root,className,combinator){if(nodes&&combinator)nodes=this[combinator](nodes);return Selector.handlers.byClassName(nodes,root,className);},byClassName:function(nodes,root,className){if(!nodes)nodes=Selector.handlers.descendant([root]);var needle=' '+className+' ';for(var i=0,results=[],node,nodeClassName;node=nodes[i];i++){nodeClassName=node.className;if(nodeClassName.length==0)continue;if(nodeClassName==className||(' '+nodeClassName+' ').include(needle))
results.push(node);}
return results;},attrPresence:function(nodes,root,attr,combinator){if(!nodes)nodes=root.getElementsByTagName("*");if(nodes&&combinator)nodes=this[combinator](nodes);var results=[];for(var i=0,node;node=nodes[i];i++)
if(Element.hasAttribute(node,attr))results.push(node);return results;},attr:function(nodes,root,attr,value,operator,combinator){if(!nodes)nodes=root.getElementsByTagName("*");if(nodes&&combinator)nodes=this[combinator](nodes);var handler=Selector.operators[operator],results=[];for(var i=0,node;node=nodes[i];i++){var nodeValue=Element.readAttribute(node,attr);if(nodeValue===null)continue;if(handler(nodeValue,value))results.push(node);}
return results;},pseudo:function(nodes,name,value,root,combinator){if(nodes&&combinator)nodes=this[combinator](nodes);if(!nodes)nodes=root.getElementsByTagName("*");return Selector.pseudos[name](nodes,value,root);}},pseudos:{'first-child':function(nodes,value,root){for(var i=0,results=[],node;node=nodes[i];i++){if(Selector.handlers.previousElementSibling(node))continue;results.push(node);}
return results;},'last-child':function(nodes,value,root){for(var i=0,results=[],node;node=nodes[i];i++){if(Selector.handlers.nextElementSibling(node))continue;results.push(node);}
return results;},'only-child':function(nodes,value,root){var h=Selector.handlers;for(var i=0,results=[],node;node=nodes[i];i++)
if(!h.previousElementSibling(node)&&!h.nextElementSibling(node))
results.push(node);return results;},'nth-child':function(nodes,formula,root){return Selector.pseudos.nth(nodes,formula,root);},'nth-last-child':function(nodes,formula,root){return Selector.pseudos.nth(nodes,formula,root,true);},'nth-of-type':function(nodes,formula,root){return Selector.pseudos.nth(nodes,formula,root,false,true);},'nth-last-of-type':function(nodes,formula,root){return Selector.pseudos.nth(nodes,formula,root,true,true);},'first-of-type':function(nodes,formula,root){return Selector.pseudos.nth(nodes,"1",root,false,true);},'last-of-type':function(nodes,formula,root){return Selector.pseudos.nth(nodes,"1",root,true,true);},'only-of-type':function(nodes,formula,root){var p=Selector.pseudos;return p['last-of-type'](p['first-of-type'](nodes,formula,root),formula,root);},getIndices:function(a,b,total){if(a==0)return b>0?[b]:[];return $R(1,total).inject([],function(memo,i){if(0==(i-b)%a&&(i-b)/a>=0)memo.push(i);return memo;});},nth:function(nodes,formula,root,reverse,ofType){if(nodes.length==0)return[];if(formula=='even')formula='2n+0';if(formula=='odd')formula='2n+1';var h=Selector.handlers,results=[],indexed=[],m;h.mark(nodes);for(var i=0,node;node=nodes[i];i++){if(!node.parentNode._countedByPrototype){h.index(node.parentNode,reverse,ofType);indexed.push(node.parentNode);}}
if(formula.match(/^\d+$/)){formula=Number(formula);for(var i=0,node;node=nodes[i];i++)
if(node.nodeIndex==formula)results.push(node);}else if(m=formula.match(/^(-?\d*)?n(([+-])(\d+))?/)){if(m[1]=="-")m[1]=-1;var a=m[1]?Number(m[1]):1;var b=m[2]?Number(m[2]):0;var indices=Selector.pseudos.getIndices(a,b,nodes.length);for(var i=0,node,l=indices.length;node=nodes[i];i++){for(var j=0;j<l;j++)
if(node.nodeIndex==indices[j])results.push(node);}}
h.unmark(nodes);h.unmark(indexed);return results;},'empty':function(nodes,value,root){for(var i=0,results=[],node;node=nodes[i];i++){if(node.tagName=='!'||node.firstChild)continue;results.push(node);}
return results;},'not':function(nodes,selector,root){var h=Selector.handlers,selectorType,m;var exclusions=new Selector(selector).findElements(root);h.mark(exclusions);for(var i=0,results=[],node;node=nodes[i];i++)
if(!node._countedByPrototype)results.push(node);h.unmark(exclusions);return results;},'enabled':function(nodes,value,root){for(var i=0,results=[],node;node=nodes[i];i++)
if(!node.disabled&&(!node.type||node.type!=='hidden'))
results.push(node);return results;},'disabled':function(nodes,value,root){for(var i=0,results=[],node;node=nodes[i];i++)
if(node.disabled)results.push(node);return results;},'checked':function(nodes,value,root){for(var i=0,results=[],node;node=nodes[i];i++)
if(node.checked)results.push(node);return results;}},operators:{'=':function(nv,v){return nv==v;},'!=':function(nv,v){return nv!=v;},'^=':function(nv,v){return nv==v||nv&&nv.startsWith(v);},'$=':function(nv,v){return nv==v||nv&&nv.endsWith(v);},'*=':function(nv,v){return nv==v||nv&&nv.include(v);},'$=':function(nv,v){return nv.endsWith(v);},'*=':function(nv,v){return nv.include(v);},'~=':function(nv,v){return(' '+nv+' ').include(' '+v+' ');},'|=':function(nv,v){return('-'+(nv||"").toUpperCase()+'-').include('-'+(v||"").toUpperCase()+'-');}},split:function(expression){var expressions=[];expression.scan(/(([\w#:.~>+()\s-]+|\*|\[.*?\])+)\s*(,|$)/,function(m){expressions.push(m[1].strip());});return expressions;},matchElements:function(elements,expression){var matches=$$(expression),h=Selector.handlers;h.mark(matches);for(var i=0,results=[],element;element=elements[i];i++)
if(element._countedByPrototype)results.push(element);h.unmark(matches);return results;},findElement:function(elements,expression,index){if(Object.isNumber(expression)){index=expression;expression=false;}
return Selector.matchElements(elements,expression||'*')[index||0];},findChildElements:function(element,expressions){expressions=Selector.split(expressions.join(','));var results=[],h=Selector.handlers;for(var i=0,l=expressions.length,selector;i<l;i++){selector=new Selector(expressions[i].strip());h.concat(results,selector.findElements(element));}
return(l>1)?h.unique(results):results;}});if(Prototype.Browser.IE){Object.extend(Selector.handlers,{concat:function(a,b){for(var i=0,node;node=b[i];i++)
if(node.tagName!=="!")a.push(node);return a;},unmark:function(nodes){for(var i=0,node;node=nodes[i];i++)
node.removeAttribute('_countedByPrototype');return nodes;}});}
function $$(){return Selector.findChildElements(document,$A(arguments));}
var Form={reset:function(form){$(form).reset();return form;},serializeElements:function(elements,options){if(typeof options!='object')options={hash:!!options};else if(Object.isUndefined(options.hash))options.hash=true;var key,value,submitted=false,submit=options.submit;var data=elements.inject({},function(result,element){if(!element.disabled&&element.name){key=element.name;value=$(element).getValue();if(value!=null&&element.type!='file'&&(element.type!='submit'||(!submitted&&submit!==false&&(!submit||key==submit)&&(submitted=true)))){if(key in result){if(!Object.isArray(result[key]))result[key]=[result[key]];result[key].push(value);}
else result[key]=value;}}
return result;});return options.hash?data:Object.toQueryString(data);}};Form.Methods={serialize:function(form,options){return Form.serializeElements(Form.getElements(form),options);},getElements:function(form){return $A($(form).getElementsByTagName('*')).inject([],function(elements,child){if(Form.Element.Serializers[child.tagName.toLowerCase()])
elements.push(Element.extend(child));return elements;});},getInputs:function(form,typeName,name){form=$(form);var inputs=form.getElementsByTagName('input');if(!typeName&&!name)return $A(inputs).map(Element.extend);for(var i=0,matchingInputs=[],length=inputs.length;i<length;i++){var input=inputs[i];if((typeName&&input.type!=typeName)||(name&&input.name!=name))
continue;matchingInputs.push(Element.extend(input));}
return matchingInputs;},disable:function(form){form=$(form);Form.getElements(form).invoke('disable');return form;},enable:function(form){form=$(form);Form.getElements(form).invoke('enable');return form;},findFirstElement:function(form){var elements=$(form).getElements().findAll(function(element){return'hidden'!=element.type&&!element.disabled;});var firstByIndex=elements.findAll(function(element){return element.hasAttribute('tabIndex')&&element.tabIndex>=0;}).sortBy(function(element){return element.tabIndex}).first();return firstByIndex?firstByIndex:elements.find(function(element){return['input','select','textarea'].include(element.tagName.toLowerCase());});},focusFirstElement:function(form){form=$(form);form.findFirstElement().activate();return form;},request:function(form,options){form=$(form),options=Object.clone(options||{});var params=options.parameters,action=form.readAttribute('action')||'';if(action.blank())action=window.location.href;options.parameters=form.serialize(true);if(params){if(Object.isString(params))params=params.toQueryParams();Object.extend(options.parameters,params);}
if(form.hasAttribute('method')&&!options.method)
options.method=form.method;return new Ajax.Request(action,options);}};Form.Element={focus:function(element){$(element).focus();return element;},select:function(element){$(element).select();return element;}};Form.Element.Methods={serialize:function(element){element=$(element);if(!element.disabled&&element.name){var value=element.getValue();if(value!=undefined){var pair={};pair[element.name]=value;return Object.toQueryString(pair);}}
return'';},getValue:function(element){element=$(element);var method=element.tagName.toLowerCase();return Form.Element.Serializers[method](element);},setValue:function(element,value){element=$(element);var method=element.tagName.toLowerCase();Form.Element.Serializers[method](element,value);return element;},clear:function(element){$(element).value='';return element;},present:function(element){return $(element).value!='';},activate:function(element){element=$(element);try{element.focus();if(element.select&&(element.tagName.toLowerCase()!='input'||!['button','reset','submit'].include(element.type)))
element.select();}catch(e){}
return element;},disable:function(element){element=$(element);element.disabled=true;return element;},enable:function(element){element=$(element);element.disabled=false;return element;}};var Field=Form.Element;var $F=Form.Element.Methods.getValue;Form.Element.Serializers={input:function(element,value){switch(element.type.toLowerCase()){case'checkbox':case'radio':return Form.Element.Serializers.inputSelector(element,value);default:return Form.Element.Serializers.textarea(element,value);}},inputSelector:function(element,value){if(Object.isUndefined(value))return element.checked?element.value:null;else element.checked=!!value;},textarea:function(element,value){if(Object.isUndefined(value))return element.value;else element.value=value;},select:function(element,value){if(Object.isUndefined(value))
return this[element.type=='select-one'?'selectOne':'selectMany'](element);else{var opt,currentValue,single=!Object.isArray(value);for(var i=0,length=element.length;i<length;i++){opt=element.options[i];currentValue=this.optionValue(opt);if(single){if(currentValue==value){opt.selected=true;return;}}
else opt.selected=value.include(currentValue);}}},selectOne:function(element){var index=element.selectedIndex;return index>=0?this.optionValue(element.options[index]):null;},selectMany:function(element){var values,length=element.length;if(!length)return null;for(var i=0,values=[];i<length;i++){var opt=element.options[i];if(opt.selected)values.push(this.optionValue(opt));}
return values;},optionValue:function(opt){return Element.extend(opt).hasAttribute('value')?opt.value:opt.text;}};Abstract.TimedObserver=Class.create(PeriodicalExecuter,{initialize:function($super,element,frequency,callback){$super(callback,frequency);this.element=$(element);this.lastValue=this.getValue();},execute:function(){var value=this.getValue();if(Object.isString(this.lastValue)&&Object.isString(value)?this.lastValue!=value:String(this.lastValue)!=String(value)){this.callback(this.element,value);this.lastValue=value;}}});Form.Element.Observer=Class.create(Abstract.TimedObserver,{getValue:function(){return Form.Element.getValue(this.element);}});Form.Observer=Class.create(Abstract.TimedObserver,{getValue:function(){return Form.serialize(this.element);}});Abstract.EventObserver=Class.create({initialize:function(element,callback){this.element=$(element);this.callback=callback;this.lastValue=this.getValue();if(this.element.tagName.toLowerCase()=='form')
this.registerFormCallbacks();else
this.registerCallback(this.element);},onElementEvent:function(){var value=this.getValue();if(this.lastValue!=value){this.callback(this.element,value);this.lastValue=value;}},registerFormCallbacks:function(){Form.getElements(this.element).each(this.registerCallback,this);},registerCallback:function(element){if(element.type){switch(element.type.toLowerCase()){case'checkbox':case'radio':Event.observe(element,'click',this.onElementEvent.bind(this));break;default:Event.observe(element,'change',this.onElementEvent.bind(this));break;}}}});Form.Element.EventObserver=Class.create(Abstract.EventObserver,{getValue:function(){return Form.Element.getValue(this.element);}});Form.EventObserver=Class.create(Abstract.EventObserver,{getValue:function(){return Form.serialize(this.element);}});if(!window.Event)var Event={};Object.extend(Event,{KEY_BACKSPACE:8,KEY_TAB:9,KEY_RETURN:13,KEY_ESC:27,KEY_LEFT:37,KEY_UP:38,KEY_RIGHT:39,KEY_DOWN:40,KEY_DELETE:46,KEY_HOME:36,KEY_END:35,KEY_PAGEUP:33,KEY_PAGEDOWN:34,KEY_INSERT:45,cache:{},relatedTarget:function(event){var element;switch(event.type){case'mouseover':element=event.fromElement;break;case'mouseout':element=event.toElement;break;default:return null;}
return Element.extend(element);}});Event.Methods=(function(){var isButton;if(Prototype.Browser.IE){var buttonMap={0:1,1:4,2:2};isButton=function(event,code){return event.button==buttonMap[code];};}else if(Prototype.Browser.WebKit){isButton=function(event,code){switch(code){case 0:return event.which==1&&!event.metaKey;case 1:return event.which==1&&event.metaKey;default:return false;}};}else{isButton=function(event,code){return event.which?(event.which===code+1):(event.button===code);};}
return{isLeftClick:function(event){return isButton(event,0)},isMiddleClick:function(event){return isButton(event,1)},isRightClick:function(event){return isButton(event,2)},element:function(event){event=Event.extend(event);var node=event.target,type=event.type,currentTarget=event.currentTarget;if(currentTarget&&currentTarget.tagName){if(type==='load'||type==='error'||(type==='click'&&currentTarget.tagName.toLowerCase()==='input'&&currentTarget.type==='radio'))
node=currentTarget;}
if(node.nodeType==Node.TEXT_NODE)node=node.parentNode;return Element.extend(node);},findElement:function(event,expression){var element=Event.element(event);if(!expression)return element;var elements=[element].concat(element.ancestors());return Selector.findElement(elements,expression,0);},pointer:function(event){var docElement=document.documentElement,body=document.body||{scrollLeft:0,scrollTop:0};return{x:event.pageX||(event.clientX+
(docElement.scrollLeft||body.scrollLeft)-
(docElement.clientLeft||0)),y:event.pageY||(event.clientY+
(docElement.scrollTop||body.scrollTop)-
(docElement.clientTop||0))};},pointerX:function(event){return Event.pointer(event).x},pointerY:function(event){return Event.pointer(event).y},stop:function(event){Event.extend(event);event.preventDefault();event.stopPropagation();event.stopped=true;}};})();Event.extend=(function(){var methods=Object.keys(Event.Methods).inject({},function(m,name){m[name]=Event.Methods[name].methodize();return m;});if(Prototype.Browser.IE){Object.extend(methods,{stopPropagation:function(){this.cancelBubble=true},preventDefault:function(){this.returnValue=false},inspect:function(){return"[object Event]"}});return function(event){if(!event)return false;if(event._extendedByPrototype)return event;event._extendedByPrototype=Prototype.emptyFunction;var pointer=Event.pointer(event);Object.extend(event,{target:event.srcElement,relatedTarget:Event.relatedTarget(event),pageX:pointer.x,pageY:pointer.y});return Object.extend(event,methods);};}else{Event.prototype=Event.prototype||document.createEvent("HTMLEvents")['__proto__'];Object.extend(Event.prototype,methods);return Prototype.K;}})();Object.extend(Event,(function(){var cache=Event.cache;function getEventID(element){if(element._prototypeEventID)return element._prototypeEventID[0];arguments.callee.id=arguments.callee.id||1;return element._prototypeEventID=[++arguments.callee.id];}
function getDOMEventName(eventName){if(eventName&&eventName.include(':'))return"dataavailable";return eventName;}
function getCacheForID(id){return cache[id]=cache[id]||{};}
function getWrappersForEventName(id,eventName){var c=getCacheForID(id);return c[eventName]=c[eventName]||[];}
function createWrapper(element,eventName,handler){var id=getEventID(element);var c=getWrappersForEventName(id,eventName);if(c.pluck("handler").include(handler))return false;var wrapper=function(event){if(!Event||!Event.extend||(event.eventName&&event.eventName!=eventName))
return false;Event.extend(event);handler.call(element,event);};wrapper.handler=handler;c.push(wrapper);return wrapper;}
function findWrapper(id,eventName,handler){var c=getWrappersForEventName(id,eventName);return c.find(function(wrapper){return wrapper.handler==handler});}
function destroyWrapper(id,eventName,handler){var c=getCacheForID(id);if(!c[eventName])return false;c[eventName]=c[eventName].without(findWrapper(id,eventName,handler));}
function destroyCache(){for(var id in cache)
for(var eventName in cache[id])
cache[id][eventName]=null;}
if(window.attachEvent){window.attachEvent("onunload",destroyCache);}
if(Prototype.Browser.WebKit){window.addEventListener('unload',Prototype.emptyFunction,false);}
return{observe:function(element,eventName,handler){element=$(element);var name=getDOMEventName(eventName);var wrapper=createWrapper(element,eventName,handler);if(!wrapper)return element;if(element.addEventListener){element.addEventListener(name,wrapper,false);}else{element.attachEvent("on"+name,wrapper);}
return element;},stopObserving:function(element,eventName,handler){element=$(element);var id=getEventID(element),name=getDOMEventName(eventName);if(!handler&&eventName){getWrappersForEventName(id,eventName).each(function(wrapper){element.stopObserving(eventName,wrapper.handler);});return element;}else if(!eventName){Object.keys(getCacheForID(id)).each(function(eventName){element.stopObserving(eventName);});return element;}
var wrapper=findWrapper(id,eventName,handler);if(!wrapper)return element;if(element.removeEventListener){element.removeEventListener(name,wrapper,false);}else{element.detachEvent("on"+name,wrapper);}
destroyWrapper(id,eventName,handler);return element;},fire:function(element,eventName,memo){element=$(element);if(element==document&&document.createEvent&&!element.dispatchEvent)
element=document.documentElement;var event;if(document.createEvent){event=document.createEvent("HTMLEvents");event.initEvent("dataavailable",true,true);}else{event=document.createEventObject();event.eventType="ondataavailable";}
event.eventName=eventName;event.memo=memo||{};if(document.createEvent){element.dispatchEvent(event);}else{element.fireEvent(event.eventType,event);}
return Event.extend(event);}};})());Object.extend(Event,Event.Methods);Element.addMethods({fire:Event.fire,observe:Event.observe,stopObserving:Event.stopObserving});Object.extend(document,{fire:Element.Methods.fire.methodize(),observe:Element.Methods.observe.methodize(),stopObserving:Element.Methods.stopObserving.methodize(),loaded:false});(function(){var timer;function fireContentLoadedEvent(){if(document.loaded)return;if(timer)window.clearInterval(timer);document.fire("dom:loaded");document.loaded=true;}
if(document.addEventListener){if(Prototype.Browser.WebKit){timer=window.setInterval(function(){if(/loaded|complete/.test(document.readyState))
fireContentLoadedEvent();},0);Event.observe(window,"load",fireContentLoadedEvent);}else{document.addEventListener("DOMContentLoaded",fireContentLoadedEvent,false);}}else{document.write("<script id=__onDOMContentLoaded defer src=//:><\/script>");$("__onDOMContentLoaded").onreadystatechange=function(){if(this.readyState=="complete"){this.onreadystatechange=null;fireContentLoadedEvent();}};}})();Hash.toQueryString=Object.toQueryString;var Toggle={display:Element.toggle};Element.Methods.childOf=Element.Methods.descendantOf;var Insertion={Before:function(element,content){return Element.insert(element,{before:content});},Top:function(element,content){return Element.insert(element,{top:content});},Bottom:function(element,content){return Element.insert(element,{bottom:content});},After:function(element,content){return Element.insert(element,{after:content});}};var $continue=new Error('"throw $continue" is deprecated, use "return" instead');var Position={includeScrollOffsets:false,prepare:function(){this.deltaX=window.pageXOffset||document.documentElement.scrollLeft||document.body.scrollLeft||0;this.deltaY=window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop||0;},within:function(element,x,y){if(this.includeScrollOffsets)
return this.withinIncludingScrolloffsets(element,x,y);this.xcomp=x;this.ycomp=y;this.offset=Element.cumulativeOffset(element);return(y>=this.offset[1]&&y<this.offset[1]+element.offsetHeight&&x>=this.offset[0]&&x<this.offset[0]+element.offsetWidth);},withinIncludingScrolloffsets:function(element,x,y){var offsetcache=Element.cumulativeScrollOffset(element);this.xcomp=x+offsetcache[0]-this.deltaX;this.ycomp=y+offsetcache[1]-this.deltaY;this.offset=Element.cumulativeOffset(element);return(this.ycomp>=this.offset[1]&&this.ycomp<this.offset[1]+element.offsetHeight&&this.xcomp>=this.offset[0]&&this.xcomp<this.offset[0]+element.offsetWidth);},overlap:function(mode,element){if(!mode)return 0;if(mode=='vertical')
return((this.offset[1]+element.offsetHeight)-this.ycomp)/element.offsetHeight;if(mode=='horizontal')
return((this.offset[0]+element.offsetWidth)-this.xcomp)/element.offsetWidth;},cumulativeOffset:Element.Methods.cumulativeOffset,positionedOffset:Element.Methods.positionedOffset,absolutize:function(element){Position.prepare();return Element.absolutize(element);},relativize:function(element){Position.prepare();return Element.relativize(element);},realOffset:Element.Methods.cumulativeScrollOffset,offsetParent:Element.Methods.getOffsetParent,page:Element.Methods.viewportOffset,clone:function(source,target,options){options=options||{};return Element.clonePosition(target,source,options);}};if(!document.getElementsByClassName)document.getElementsByClassName=function(instanceMethods){function iter(name){return name.blank()?null:"[contains(concat(' ', @class, ' '), ' "+name+" ')]";}
instanceMethods.getElementsByClassName=Prototype.BrowserFeatures.XPath?function(element,className){className=className.toString().strip();var cond=/\s/.test(className)?$w(className).map(iter).join(''):iter(className);return cond?document._getElementsByXPath('.//*'+cond,element):[];}:function(element,className){className=className.toString().strip();var elements=[],classNames=(/\s/.test(className)?$w(className):null);if(!classNames&&!className)return elements;var nodes=$(element).getElementsByTagName('*');className=' '+className+' ';for(var i=0,child,cn;child=nodes[i];i++){if(child.className&&(cn=' '+child.className+' ')&&(cn.include(className)||(classNames&&classNames.all(function(name){return!name.toString().blank()&&cn.include(' '+name+' ');}))))
elements.push(Element.extend(child));}
return elements;};return function(className,parentElement){return $(parentElement||document.body).getElementsByClassName(className);};}(Element.Methods);Element.ClassNames=Class.create();Element.ClassNames.prototype={initialize:function(element){this.element=$(element);},_each:function(iterator){this.element.className.split(/\s+/).select(function(name){return name.length>0;})._each(iterator);},set:function(className){this.element.className=className;},add:function(classNameToAdd){if(this.include(classNameToAdd))return;this.set($A(this).concat(classNameToAdd).join(' '));},remove:function(classNameToRemove){if(!this.include(classNameToRemove))return;this.set($A(this).without(classNameToRemove).join(' '));},toString:function(){return $A(this).join(' ');}};Object.extend(Element.ClassNames.prototype,Enumerable);Element.addMethods();
var Common={implode:function($separator,$array){$result=$array[0];for($i=1;$i<$array.length-1;$i++)
$result+=$separator+$array[$i];return $result;},eventManager:function($event,$arguments){if(typeof $arguments=='object'||typeof $arguments=='array'){$arguments_string='';for($i=0;$i<$arguments.length;$i++){if($i!==0){$arguments_string+=', \''+$arguments[$i]+'\' ';}else{$arguments_string+='\''+$arguments[$i]+'\' ';}}}else{$arguments_string='\''+$arguments+'\' ';}
for($i=0;$i<modules.length;$i++){eval('if(typeof eval(modules[$i]).'+$event+' == "function")eval(modules[$i]).'+$event+'('+$arguments_string+')');}},clone:function($object){if($object==null||typeof($object)!='object')return $object;var $temp=new $object.constructor();for(var $key in $object)$temp[$key]=clone($object[$key]);return $temp;},gatherParams:function($form){if(document[$form]){var $result='';$(document[$form]).getElements().each(function($param){if($param.name&&$param.getValue()!='')$result+=$param.name+'/'+$param.getValue()+'/';});return $result;}},rate:function($entity_id,$entity_type,$action,$rating_container,$negative_classname,$neutral_classname,$positive_classname,$callback){new Ajax.Request('ajax/rating.php',{method:'post',parameters:{rate_type:$entity_type,rate_id:$entity_id,rate_action:$action,rate_ajax:true},onSuccess:function($list){if($list.responseText){$($rating_container).update($list.responseText);$rating=$list.responseText;if($rating>0&&(typeof($positive_classname)!='undefined'))$($rating_container).className=$positive_classname;if($rating<0&&(typeof($negative_classname)!='undefined'))$($rating_container).className=$negative_classname;if($rating==0&&(typeof($neutral_classname)!='undefined'))$($rating_container).className=$neutral_classname;if(typeof($callback)!='undefined'){if(typeof($callback)!='string'){$to_eval=$callback[0]+'(';if(typeof $callback[1]!='undefined')$to_eval+='"'+$callback[1]+'"';for($i=2;$i<$callback.length;$i++){$to_eval+=', "'+$callback[$i]+'"';}
$to_eval+=');'}
eval($to_eval);}}}});},resizelogo:function(item){var IE='\v'=='v';if(IE){Element.extend(item);if(item.hasClassName('logo_50')){var styles={width:'50px',height:'50px'}
$(item).setStyle(styles);}
if(item.hasClassName('logo_70')){var styles={width:'70px',height:'70px'}
$(item).setStyle(styles);}
if(item.hasClassName('logo_100')){var styles={width:'100px',height:'100px'}
$(item).setStyle(styles);}}
else{$width=item.Width;$height=item.Height;if(item.hasClassName('logo_50')){if($width>50){var $new_width=50;var $new_height=Math.round(50/$width*$height);}else{var $new_height=50;var $new_width=Math.round(50/$height*$width);}
var $margintop=parseInt(item.getStyle('margin-top'))+(50-$new_height)/2+'px';var $marginleft=parseInt(item.getStyle('margin-left'))+(50-$new_width)/2+'px';var styles={margin:$margintop+' '+item.getStyle('margin-right')+' '+item.getStyle('margin-bottom')+' '+$marginleft,width:$new_width+'px',height:$new_height+'px'}
$(item).setStyle(styles);}
if(item.hasClassName('logo_70')){if($width>70){var $new_width=70;var $new_height=Math.round(70/$width*$height);}
else{var $new_height=70;var $new_width=Math.round(70/$height*$width);}
var $margintop=parseInt(item.getStyle('margin-top'))+(70-$new_height)/2+'px';var $marginleft=parseInt(item.getStyle('margin-left'))+(70-$new_width)/2+'px';var styles={margin:$margintop+' '+item.getStyle('margin-right')+' '+item.getStyle('margin-bottom')+' '+$marginleft,width:$new_width+'px',height:$new_height+'px'}
$(item).setStyle(styles);}
if(item.hasClassName('logo_100')){var $margintop=parseInt(item.getStyle('margin-top'))+(100-$height)/2+'px';var $marginleft=parseInt(item.getStyle('margin-left'))+(100-$width)/2+'px';var styles={margin:$margintop+' '+item.getStyle('margin-right')+' '+item.getStyle('margin-bottom')+' '+$marginleft}
$(item).setStyle(styles);}}},lockCommentRatingButtons:function($id){$('ratedowncomment'+$id).href='';$('ratedowncomment'+$id).onClick='';$('rateupcomment'+$id).href='';$('rateupcomment'+$id).href='';$('rateupcommentimg'+$id).setAttribute('src','img/btn_plus_dis.gif');$('ratedowncommentimg'+$id).setAttribute('src','img/btn_minus_dis.gif');},showHideComment:function($id){if($('commentBodyDiv'+$id).style.display=='none')
{$('commentBodyDiv'+$id).style.display='block';$('comment'+$id+'showHideLink').update('Ñêðûòü');}
else
{$('commentBodyDiv'+$id).style.display='none';$('comment'+$id+'showHideLink').update('Ïîêàçàòü');}},$RF:function(el,radioGroup){if($(el).type&&$(el).type.toLowerCase()=='radio'){var radioGroup=$(el).name;var el=$(el).form;}else if($(el).tagName.toLowerCase()!='form'){return false;}
var checked=$(el).getInputs('radio',radioGroup).find(function(re){return re.checked;});return(checked)?$F(checked):null;},replyToComment:function($comment_id,$quote){$('replyto').value=$comment_id;if($quote){$('comment_area').value='>'+($('comment_'+$comment_id).value.replace(/\n/g,"\n>"))+"\n";$('comment_area').text='>'+($('comment_'+$comment_id).value.replace(/\n/g,"\n>"))+"\n";}
$('comment_area').focus();return false;},trim:function($string){return $string.replace(/(^\s+)|(\s+$)/g,'');},grayscale:function(image,bPlaceImage){var myCanvas=document.createElement("canvas");if(typeof(myCanvas.getContext)=='function'){var myCanvasContext=myCanvas.getContext("2d");var imgWidth=image.width;var imgHeight=image.height;myCanvas.width=imgWidth;myCanvas.height=imgHeight;myCanvasContext.drawImage(image,0,0);var imageData=myCanvasContext.getImageData(0,0,imgWidth,imgHeight);for(i=0;i<imageData.height;i++){for(j=0;j<imageData.width;j++){var index=(i*4)*imageData.width+(j*4);var red=imageData.data[index];var green=imageData.data[index+1];var blue=imageData.data[index+2];var alpha=imageData.data[index+3];var average=(red+green+blue)*0.3333;imageData.data[index]=average;imageData.data[index+1]=average;imageData.data[index+2]=average;imageData.data[index+3]=alpha;}}
myCanvasContext.putImageData(imageData,0,0,0,0,imageData.width,imageData.height);if(bPlaceImage){var myDiv=document.createElement("div");myDiv.appendChild(myCanvas);image.parentNode.appendChild(myCanvas);}
return myCanvas.toDataURL();}else return image.src;}};
var headerBanner={onCityChange:function($city){for(var $i=1;$i<27;$i++){if($('header_banner_'+$i)!=undefined){$('header_banner_'+$i).hide();}}
if($city&&$('header_banner_'+$city)!=undefined){$('header_banner_'+$city).show();$('header_banner').hide();}else $('header_banner').show();}};
var login2={window:null,isAnonymous:true,user:'',keyCrutch:null,newPage:null,checkCredentials:function()
{var params={login2_username:$('login2_form')['login2_username'].value,login2_password:$('login2_form')['login2_password'].value,login2_request:true,login2_remember:$('login2_form')['login2_remember'].checked?1:0}
this.sendRequest(params);if(!this.isAnonymous){this.window.hide();this.onUserLogin();}
else
{this.window.updateHeight();}},logout:function()
{var params={login2_logout:true,login2_request:true};this.sendRequest(params);},sendRequest:function(params)
{new Ajax.Request('ajax/login2.php',{parameters:params,asynchronous:false,onComplete:function(reply)
{$('login2_container').innerHTML=reply.responseText;if(reply.headerJSON!=null)
{login2.isAnonymous=reply.headerJSON.isAnonymous;login2.user=reply.headerJSON.user;$('login2_error_msg').innerHTML=reply.headerJSON.error;}}})},showLoginWindow:function()
{if(this.window==null)
{this.keyCrutch=this.processKey.bindAsEventListener(this);this.window=new Window({className:"alphacube",title:"<span class=\"blueLabel\">Ââåäèòå ëîãèí è ïàðîëü</span>",width:300,height:145,draggable:true,resizable:false,minimizable:false,maximizable:false,destroyOnClose:false,hideEffect:Element.hide,showEffect:Element.show,onClose:function()
{Event.stopObserving(login2.window.getId(),'keydown',login2.keyCrutch);login2.newPage=null;$('login2_error_msg').innerHTML='';},onShow:function()
{Event.observe(login2.window.getId(),'keydown',login2.keyCrutch);$('login2_form').focusFirstElement();login2.window.updateHeight();},onError:function()
{alert('WTF');}});Windows.overlayHideEffectOptions=null;Windows.overlayHideEffectOptions=null;this.window.setContent('login2_window');this.window.showCenter(true);}
else
{Windows.overlayHideEffectOptions=null;Windows.overlayHideEffectOptions=null;this.window.showCenter(true);}},showLoginPrompt:function(message,ref)
{this.newPage=ref;$('login2_error_msg').innerHTML=message;this.showLoginWindow();},showLoginForm:function()
{$('login2_form').style.display='block';return true;},hideLoginForm:function()
{$('login2_form').style.display='none';this.window=null;return true;},onShowLoginForm:function()
{this.showLoginWindow();},onUserLogin:function()
{if(login2.newPage==null)
login2.newPage=document.location.href;document.location.href=login2.newPage;},processKey:function(evt)
{var c=evt.keyCode;if(c==Event.KEY_RETURN)
this.checkCredentials();else if(c==Event.KEY_ESC)
this.window.close();}}
String.prototype.parseColor=function(){var color='#';if(this.slice(0,4)=='rgb('){var cols=this.slice(4,this.length-1).split(',');var i=0;do{color+=parseInt(cols[i]).toColorPart()}while(++i<3);}else{if(this.slice(0,1)=='#'){if(this.length==4)for(var i=1;i<4;i++)color+=(this.charAt(i)+this.charAt(i)).toLowerCase();if(this.length==7)color=this.toLowerCase();}}
return(color.length==7?color:(arguments[0]||this));};Element.collectTextNodes=function(element){return $A($(element).childNodes).collect(function(node){return(node.nodeType==3?node.nodeValue:(node.hasChildNodes()?Element.collectTextNodes(node):''));}).flatten().join('');};Element.collectTextNodesIgnoreClass=function(element,className){return $A($(element).childNodes).collect(function(node){return(node.nodeType==3?node.nodeValue:((node.hasChildNodes()&&!Element.hasClassName(node,className))?Element.collectTextNodesIgnoreClass(node,className):''));}).flatten().join('');};Element.setContentZoom=function(element,percent){element=$(element);element.setStyle({fontSize:(percent/100)+'em'});if(Prototype.Browser.WebKit)window.scrollBy(0,0);return element;};Element.getInlineOpacity=function(element){return $(element).style.opacity||'';};Element.forceRerendering=function(element){try{element=$(element);var n=document.createTextNode(' ');element.appendChild(n);element.removeChild(n);}catch(e){}};var Effect={_elementDoesNotExistError:{name:'ElementDoesNotExistError',message:'The specified DOM element does not exist, but is required for this effect to operate'},Transitions:{linear:Prototype.K,sinoidal:function(pos){return(-Math.cos(pos*Math.PI)/2)+0.5;},reverse:function(pos){return 1-pos;},flicker:function(pos){var pos=((-Math.cos(pos*Math.PI)/4)+0.75)+Math.random()/4;return pos>1?1:pos;},wobble:function(pos){return(-Math.cos(pos*Math.PI*(9*pos))/2)+0.5;},pulse:function(pos,pulses){pulses=pulses||5;return(((pos%(1/pulses))*pulses).round()==0?((pos*pulses*2)-(pos*pulses*2).floor()):1-((pos*pulses*2)-(pos*pulses*2).floor()));},spring:function(pos){return 1-(Math.cos(pos*4.5*Math.PI)*Math.exp(-pos*6));},none:function(pos){return 0;},full:function(pos){return 1;}},DefaultOptions:{duration:1.0,fps:100,sync:false,from:0.0,to:1.0,delay:0.0,queue:'parallel'},tagifyText:function(element){var tagifyStyle='position:relative';if(Prototype.Browser.IE)tagifyStyle+=';zoom:1';element=$(element);$A(element.childNodes).each(function(child){if(child.nodeType==3){child.nodeValue.toArray().each(function(character){element.insertBefore(new Element('span',{style:tagifyStyle}).update(character==' '?String.fromCharCode(160):character),child);});Element.remove(child);}});},multiple:function(element,effect){var elements;if(((typeof element=='object')||Object.isFunction(element))&&(element.length))
elements=element;else
elements=$(element).childNodes;var options=Object.extend({speed:0.1,delay:0.0},arguments[2]||{});var masterDelay=options.delay;$A(elements).each(function(element,index){new effect(element,Object.extend(options,{delay:index*options.speed+masterDelay}));});},PAIRS:{'slide':['SlideDown','SlideUp'],'blind':['BlindDown','BlindUp'],'appear':['Appear','Fade']},toggle:function(element,effect){element=$(element);effect=(effect||'appear').toLowerCase();var options=Object.extend({queue:{position:'end',scope:(element.id||'global'),limit:1}},arguments[2]||{});Effect[element.visible()?Effect.PAIRS[effect][1]:Effect.PAIRS[effect][0]](element,options);}};Effect.DefaultOptions.transition=Effect.Transitions.sinoidal;Effect.ScopedQueue=Class.create(Enumerable,{initialize:function(){this.effects=[];this.interval=null;},_each:function(iterator){this.effects._each(iterator);},add:function(effect){var timestamp=new Date().getTime();var position=Object.isString(effect.options.queue)?effect.options.queue:effect.options.queue.position;switch(position){case'front':this.effects.findAll(function(e){return e.state=='idle'}).each(function(e){e.startOn+=effect.finishOn;e.finishOn+=effect.finishOn;});break;case'with-last':timestamp=this.effects.pluck('startOn').max()||timestamp;break;case'end':timestamp=this.effects.pluck('finishOn').max()||timestamp;break;}
effect.startOn+=timestamp;effect.finishOn+=timestamp;if(!effect.options.queue.limit||(this.effects.length<effect.options.queue.limit))
this.effects.push(effect);if(!this.interval)
this.interval=setInterval(this.loop.bind(this),15);},remove:function(effect){this.effects=this.effects.reject(function(e){return e==effect});if(this.effects.length==0){clearInterval(this.interval);this.interval=null;}},loop:function(){var timePos=new Date().getTime();for(var i=0,len=this.effects.length;i<len;i++)
this.effects[i]&&this.effects[i].loop(timePos);}});Effect.Queues={instances:$H(),get:function(queueName){if(!Object.isString(queueName))return queueName;return this.instances.get(queueName)||this.instances.set(queueName,new Effect.ScopedQueue());}};Effect.Queue=Effect.Queues.get('global');Effect.Base=Class.create({position:null,start:function(options){function codeForEvent(options,eventName){return((options[eventName+'Internal']?'this.options.'+eventName+'Internal(this);':'')+
(options[eventName]?'this.options.'+eventName+'(this);':''));}
if(options&&options.transition===false)options.transition=Effect.Transitions.linear;this.options=Object.extend(Object.extend({},Effect.DefaultOptions),options||{});this.currentFrame=0;this.state='idle';this.startOn=this.options.delay*1000;this.finishOn=this.startOn+(this.options.duration*1000);this.fromToDelta=this.options.to-this.options.from;this.totalTime=this.finishOn-this.startOn;this.totalFrames=this.options.fps*this.options.duration;eval('this.render = function(pos){ '+'if (this.state=="idle"){this.state="running";'+
codeForEvent(this.options,'beforeSetup')+
(this.setup?'this.setup();':'')+
codeForEvent(this.options,'afterSetup')+'};if (this.state=="running"){'+'pos=this.options.transition(pos)*'+this.fromToDelta+'+'+this.options.from+';'+'this.position=pos;'+
codeForEvent(this.options,'beforeUpdate')+
(this.update?'this.update(pos);':'')+
codeForEvent(this.options,'afterUpdate')+'}}');this.event('beforeStart');if(!this.options.sync)
Effect.Queues.get(Object.isString(this.options.queue)?'global':this.options.queue.scope).add(this);},loop:function(timePos){if(timePos>=this.startOn){if(timePos>=this.finishOn){this.render(1.0);this.cancel();this.event('beforeFinish');if(this.finish)this.finish();this.event('afterFinish');return;}
var pos=(timePos-this.startOn)/this.totalTime,frame=(pos*this.totalFrames).round();if(frame>this.currentFrame){this.render(pos);this.currentFrame=frame;}}},cancel:function(){if(!this.options.sync)
Effect.Queues.get(Object.isString(this.options.queue)?'global':this.options.queue.scope).remove(this);this.state='finished';},event:function(eventName){if(this.options[eventName+'Internal'])this.options[eventName+'Internal'](this);if(this.options[eventName])this.options[eventName](this);},inspect:function(){var data=$H();for(property in this)
if(!Object.isFunction(this[property]))data.set(property,this[property]);return'#<Effect:'+data.inspect()+',options:'+$H(this.options).inspect()+'>';}});Effect.Parallel=Class.create(Effect.Base,{initialize:function(effects){this.effects=effects||[];this.start(arguments[1]);},update:function(position){this.effects.invoke('render',position);},finish:function(position){this.effects.each(function(effect){effect.render(1.0);effect.cancel();effect.event('beforeFinish');if(effect.finish)effect.finish(position);effect.event('afterFinish');});}});Effect.Tween=Class.create(Effect.Base,{initialize:function(object,from,to){object=Object.isString(object)?$(object):object;var args=$A(arguments),method=args.last(),options=args.length==5?args[3]:null;this.method=Object.isFunction(method)?method.bind(object):Object.isFunction(object[method])?object[method].bind(object):function(value){object[method]=value};this.start(Object.extend({from:from,to:to},options||{}));},update:function(position){this.method(position);}});Effect.Event=Class.create(Effect.Base,{initialize:function(){this.start(Object.extend({duration:0},arguments[0]||{}));},update:Prototype.emptyFunction});Effect.Opacity=Class.create(Effect.Base,{initialize:function(element){this.element=$(element);if(!this.element)throw(Effect._elementDoesNotExistError);if(Prototype.Browser.IE&&(!this.element.currentStyle.hasLayout))
this.element.setStyle({zoom:1});var options=Object.extend({from:this.element.getOpacity()||0.0,to:1.0},arguments[1]||{});this.start(options);},update:function(position){this.element.setOpacity(position);}});Effect.Move=Class.create(Effect.Base,{initialize:function(element){this.element=$(element);if(!this.element)throw(Effect._elementDoesNotExistError);var options=Object.extend({x:0,y:0,mode:'relative'},arguments[1]||{});this.start(options);},setup:function(){this.element.makePositioned();this.originalLeft=parseFloat(this.element.getStyle('left')||'0');this.originalTop=parseFloat(this.element.getStyle('top')||'0');if(this.options.mode=='absolute'){this.options.x=this.options.x-this.originalLeft;this.options.y=this.options.y-this.originalTop;}},update:function(position){this.element.setStyle({left:(this.options.x*position+this.originalLeft).round()+'px',top:(this.options.y*position+this.originalTop).round()+'px'});}});Effect.MoveBy=function(element,toTop,toLeft){return new Effect.Move(element,Object.extend({x:toLeft,y:toTop},arguments[3]||{}));};Effect.Scale=Class.create(Effect.Base,{initialize:function(element,percent){this.element=$(element);if(!this.element)throw(Effect._elementDoesNotExistError);var options=Object.extend({scaleX:true,scaleY:true,scaleContent:true,scaleFromCenter:false,scaleMode:'box',scaleFrom:100.0,scaleTo:percent},arguments[2]||{});this.start(options);},setup:function(){this.restoreAfterFinish=this.options.restoreAfterFinish||false;this.elementPositioning=this.element.getStyle('position');this.originalStyle={};['top','left','width','height','fontSize'].each(function(k){this.originalStyle[k]=this.element.style[k];}.bind(this));this.originalTop=this.element.offsetTop;this.originalLeft=this.element.offsetLeft;var fontSize=this.element.getStyle('font-size')||'100%';['em','px','%','pt'].each(function(fontSizeType){if(fontSize.indexOf(fontSizeType)>0){this.fontSize=parseFloat(fontSize);this.fontSizeType=fontSizeType;}}.bind(this));this.factor=(this.options.scaleTo-this.options.scaleFrom)/100;this.dims=null;if(this.options.scaleMode=='box')
this.dims=[this.element.offsetHeight,this.element.offsetWidth];if(/^content/.test(this.options.scaleMode))
this.dims=[this.element.scrollHeight,this.element.scrollWidth];if(!this.dims)
this.dims=[this.options.scaleMode.originalHeight,this.options.scaleMode.originalWidth];},update:function(position){var currentScale=(this.options.scaleFrom/100.0)+(this.factor*position);if(this.options.scaleContent&&this.fontSize)
this.element.setStyle({fontSize:this.fontSize*currentScale+this.fontSizeType});this.setDimensions(this.dims[0]*currentScale,this.dims[1]*currentScale);},finish:function(position){if(this.restoreAfterFinish)this.element.setStyle(this.originalStyle);},setDimensions:function(height,width){var d={};if(this.options.scaleX)d.width=width.round()+'px';if(this.options.scaleY)d.height=height.round()+'px';if(this.options.scaleFromCenter){var topd=(height-this.dims[0])/2;var leftd=(width-this.dims[1])/2;if(this.elementPositioning=='absolute'){if(this.options.scaleY)d.top=this.originalTop-topd+'px';if(this.options.scaleX)d.left=this.originalLeft-leftd+'px';}else{if(this.options.scaleY)d.top=-topd+'px';if(this.options.scaleX)d.left=-leftd+'px';}}
this.element.setStyle(d);}});Effect.Highlight=Class.create(Effect.Base,{initialize:function(element){this.element=$(element);if(!this.element)throw(Effect._elementDoesNotExistError);var options=Object.extend({startcolor:'#ffff99'},arguments[1]||{});this.start(options);},setup:function(){if(this.element.getStyle('display')=='none'){this.cancel();return;}
this.oldStyle={};if(!this.options.keepBackgroundImage){this.oldStyle.backgroundImage=this.element.getStyle('background-image');this.element.setStyle({backgroundImage:'none'});}
if(!this.options.endcolor)
this.options.endcolor=this.element.getStyle('background-color').parseColor('#ffffff');if(!this.options.restorecolor)
this.options.restorecolor=this.element.getStyle('background-color');this._base=$R(0,2).map(function(i){return parseInt(this.options.startcolor.slice(i*2+1,i*2+3),16)}.bind(this));this._delta=$R(0,2).map(function(i){return parseInt(this.options.endcolor.slice(i*2+1,i*2+3),16)-this._base[i]}.bind(this));},update:function(position){this.element.setStyle({backgroundColor:$R(0,2).inject('#',function(m,v,i){return m+((this._base[i]+(this._delta[i]*position)).round().toColorPart());}.bind(this))});},finish:function(){this.element.setStyle(Object.extend(this.oldStyle,{backgroundColor:this.options.restorecolor}));}});Effect.ScrollTo=function(element){var options=arguments[1]||{},scrollOffsets=document.viewport.getScrollOffsets(),elementOffsets=$(element).cumulativeOffset(),max=(window.height||document.body.scrollHeight)-document.viewport.getHeight();if(options.offset)elementOffsets[1]+=options.offset;return new Effect.Tween(null,scrollOffsets.top,elementOffsets[1]>max?max:elementOffsets[1],options,function(p){scrollTo(scrollOffsets.left,p.round())});};Effect.Fade=function(element){element=$(element);var oldOpacity=element.getInlineOpacity();var options=Object.extend({from:element.getOpacity()||1.0,to:0.0,afterFinishInternal:function(effect){if(effect.options.to!=0)return;effect.element.hide().setStyle({opacity:oldOpacity});}},arguments[1]||{});return new Effect.Opacity(element,options);};Effect.Appear=function(element){element=$(element);var options=Object.extend({from:(element.getStyle('display')=='none'?0.0:element.getOpacity()||0.0),to:1.0,afterFinishInternal:function(effect){effect.element.forceRerendering();},beforeSetup:function(effect){effect.element.setOpacity(effect.options.from).show();}},arguments[1]||{});return new Effect.Opacity(element,options);};Effect.Puff=function(element){element=$(element);var oldStyle={opacity:element.getInlineOpacity(),position:element.getStyle('position'),top:element.style.top,left:element.style.left,width:element.style.width,height:element.style.height};return new Effect.Parallel([new Effect.Scale(element,200,{sync:true,scaleFromCenter:true,scaleContent:true,restoreAfterFinish:true}),new Effect.Opacity(element,{sync:true,to:0.0})],Object.extend({duration:1.0,beforeSetupInternal:function(effect){Position.absolutize(effect.effects[0].element)},afterFinishInternal:function(effect){effect.effects[0].element.hide().setStyle(oldStyle);}},arguments[1]||{}));};Effect.BlindUp=function(element){element=$(element);element.makeClipping();return new Effect.Scale(element,0,Object.extend({scaleContent:false,scaleX:false,restoreAfterFinish:true,afterFinishInternal:function(effect){effect.element.hide().undoClipping();}},arguments[1]||{}));};Effect.BlindDown=function(element){element=$(element);var elementDimensions=element.getDimensions();return new Effect.Scale(element,100,Object.extend({scaleContent:false,scaleX:false,scaleFrom:0,scaleMode:{originalHeight:elementDimensions.height,originalWidth:elementDimensions.width},restoreAfterFinish:true,afterSetup:function(effect){effect.element.makeClipping().setStyle({height:'0px'}).show();},afterFinishInternal:function(effect){effect.element.undoClipping();}},arguments[1]||{}));};Effect.SwitchOff=function(element){element=$(element);var oldOpacity=element.getInlineOpacity();return new Effect.Appear(element,Object.extend({duration:0.4,from:0,transition:Effect.Transitions.flicker,afterFinishInternal:function(effect){new Effect.Scale(effect.element,1,{duration:0.3,scaleFromCenter:true,scaleX:false,scaleContent:false,restoreAfterFinish:true,beforeSetup:function(effect){effect.element.makePositioned().makeClipping();},afterFinishInternal:function(effect){effect.element.hide().undoClipping().undoPositioned().setStyle({opacity:oldOpacity});}})}},arguments[1]||{}));};Effect.DropOut=function(element){element=$(element);var oldStyle={top:element.getStyle('top'),left:element.getStyle('left'),opacity:element.getInlineOpacity()};return new Effect.Parallel([new Effect.Move(element,{x:0,y:100,sync:true}),new Effect.Opacity(element,{sync:true,to:0.0})],Object.extend({duration:0.5,beforeSetup:function(effect){effect.effects[0].element.makePositioned();},afterFinishInternal:function(effect){effect.effects[0].element.hide().undoPositioned().setStyle(oldStyle);}},arguments[1]||{}));};Effect.Shake=function(element){element=$(element);var options=Object.extend({distance:20,duration:0.5},arguments[1]||{});var distance=parseFloat(options.distance);var split=parseFloat(options.duration)/10.0;var oldStyle={top:element.getStyle('top'),left:element.getStyle('left')};return new Effect.Move(element,{x:distance,y:0,duration:split,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:-distance*2,y:0,duration:split*2,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:distance*2,y:0,duration:split*2,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:-distance*2,y:0,duration:split*2,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:distance*2,y:0,duration:split*2,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:-distance,y:0,duration:split,afterFinishInternal:function(effect){effect.element.undoPositioned().setStyle(oldStyle);}})}})}})}})}})}});};Effect.SlideDown=function(element){element=$(element).cleanWhitespace();var oldInnerBottom=element.down().getStyle('bottom');var elementDimensions=element.getDimensions();return new Effect.Scale(element,100,Object.extend({scaleContent:false,scaleX:false,scaleFrom:window.opera?0:1,scaleMode:{originalHeight:elementDimensions.height,originalWidth:elementDimensions.width},restoreAfterFinish:true,afterSetup:function(effect){effect.element.makePositioned();effect.element.down().makePositioned();if(window.opera)effect.element.setStyle({top:''});effect.element.makeClipping().setStyle({height:'0px'}).show();},afterUpdateInternal:function(effect){effect.element.down().setStyle({bottom:(effect.dims[0]-effect.element.clientHeight)+'px'});},afterFinishInternal:function(effect){effect.element.undoClipping().undoPositioned();effect.element.down().undoPositioned().setStyle({bottom:oldInnerBottom});}},arguments[1]||{}));};Effect.SlideUp=function(element){element=$(element).cleanWhitespace();var oldInnerBottom=element.down().getStyle('bottom');var elementDimensions=element.getDimensions();return new Effect.Scale(element,window.opera?0:1,Object.extend({scaleContent:false,scaleX:false,scaleMode:'box',scaleFrom:100,scaleMode:{originalHeight:elementDimensions.height,originalWidth:elementDimensions.width},restoreAfterFinish:true,afterSetup:function(effect){effect.element.makePositioned();effect.element.down().makePositioned();if(window.opera)effect.element.setStyle({top:''});effect.element.makeClipping().show();},afterUpdateInternal:function(effect){effect.element.down().setStyle({bottom:(effect.dims[0]-effect.element.clientHeight)+'px'});},afterFinishInternal:function(effect){effect.element.hide().undoClipping().undoPositioned();effect.element.down().undoPositioned().setStyle({bottom:oldInnerBottom});}},arguments[1]||{}));};Effect.Squish=function(element){return new Effect.Scale(element,window.opera?1:0,{restoreAfterFinish:true,beforeSetup:function(effect){effect.element.makeClipping();},afterFinishInternal:function(effect){effect.element.hide().undoClipping();}});};Effect.Grow=function(element){element=$(element);var options=Object.extend({direction:'center',moveTransition:Effect.Transitions.sinoidal,scaleTransition:Effect.Transitions.sinoidal,opacityTransition:Effect.Transitions.full},arguments[1]||{});var oldStyle={top:element.style.top,left:element.style.left,height:element.style.height,width:element.style.width,opacity:element.getInlineOpacity()};var dims=element.getDimensions();var initialMoveX,initialMoveY;var moveX,moveY;switch(options.direction){case'top-left':initialMoveX=initialMoveY=moveX=moveY=0;break;case'top-right':initialMoveX=dims.width;initialMoveY=moveY=0;moveX=-dims.width;break;case'bottom-left':initialMoveX=moveX=0;initialMoveY=dims.height;moveY=-dims.height;break;case'bottom-right':initialMoveX=dims.width;initialMoveY=dims.height;moveX=-dims.width;moveY=-dims.height;break;case'center':initialMoveX=dims.width/2;initialMoveY=dims.height/2;moveX=-dims.width/2;moveY=-dims.height/2;break;}
return new Effect.Move(element,{x:initialMoveX,y:initialMoveY,duration:0.01,beforeSetup:function(effect){effect.element.hide().makeClipping().makePositioned();},afterFinishInternal:function(effect){new Effect.Parallel([new Effect.Opacity(effect.element,{sync:true,to:1.0,from:0.0,transition:options.opacityTransition}),new Effect.Move(effect.element,{x:moveX,y:moveY,sync:true,transition:options.moveTransition}),new Effect.Scale(effect.element,100,{scaleMode:{originalHeight:dims.height,originalWidth:dims.width},sync:true,scaleFrom:window.opera?1:0,transition:options.scaleTransition,restoreAfterFinish:true})],Object.extend({beforeSetup:function(effect){effect.effects[0].element.setStyle({height:'0px'}).show();},afterFinishInternal:function(effect){effect.effects[0].element.undoClipping().undoPositioned().setStyle(oldStyle);}},options))}});};Effect.Shrink=function(element){element=$(element);var options=Object.extend({direction:'center',moveTransition:Effect.Transitions.sinoidal,scaleTransition:Effect.Transitions.sinoidal,opacityTransition:Effect.Transitions.none},arguments[1]||{});var oldStyle={top:element.style.top,left:element.style.left,height:element.style.height,width:element.style.width,opacity:element.getInlineOpacity()};var dims=element.getDimensions();var moveX,moveY;switch(options.direction){case'top-left':moveX=moveY=0;break;case'top-right':moveX=dims.width;moveY=0;break;case'bottom-left':moveX=0;moveY=dims.height;break;case'bottom-right':moveX=dims.width;moveY=dims.height;break;case'center':moveX=dims.width/2;moveY=dims.height/2;break;}
return new Effect.Parallel([new Effect.Opacity(element,{sync:true,to:0.0,from:1.0,transition:options.opacityTransition}),new Effect.Scale(element,window.opera?1:0,{sync:true,transition:options.scaleTransition,restoreAfterFinish:true}),new Effect.Move(element,{x:moveX,y:moveY,sync:true,transition:options.moveTransition})],Object.extend({beforeStartInternal:function(effect){effect.effects[0].element.makePositioned().makeClipping();},afterFinishInternal:function(effect){effect.effects[0].element.hide().undoClipping().undoPositioned().setStyle(oldStyle);}},options));};Effect.Pulsate=function(element){element=$(element);var options=arguments[1]||{};var oldOpacity=element.getInlineOpacity();var transition=options.transition||Effect.Transitions.sinoidal;var reverser=function(pos){return transition(1-Effect.Transitions.pulse(pos,options.pulses))};reverser.bind(transition);return new Effect.Opacity(element,Object.extend(Object.extend({duration:2.0,from:0,afterFinishInternal:function(effect){effect.element.setStyle({opacity:oldOpacity});}},options),{transition:reverser}));};Effect.Fold=function(element){element=$(element);var oldStyle={top:element.style.top,left:element.style.left,width:element.style.width,height:element.style.height};element.makeClipping();return new Effect.Scale(element,5,Object.extend({scaleContent:false,scaleX:false,afterFinishInternal:function(effect){new Effect.Scale(element,1,{scaleContent:false,scaleY:false,afterFinishInternal:function(effect){effect.element.hide().undoClipping().setStyle(oldStyle);}});}},arguments[1]||{}));};Effect.Morph=Class.create(Effect.Base,{initialize:function(element){this.element=$(element);if(!this.element)throw(Effect._elementDoesNotExistError);var options=Object.extend({style:{}},arguments[1]||{});if(!Object.isString(options.style))this.style=$H(options.style);else{if(options.style.include(':'))
this.style=options.style.parseStyle();else{this.element.addClassName(options.style);this.style=$H(this.element.getStyles());this.element.removeClassName(options.style);var css=this.element.getStyles();this.style=this.style.reject(function(style){return style.value==css[style.key];});options.afterFinishInternal=function(effect){effect.element.addClassName(effect.options.style);effect.transforms.each(function(transform){effect.element.style[transform.style]='';});}}}
this.start(options);},setup:function(){function parseColor(color){if(!color||['rgba(0, 0, 0, 0)','transparent'].include(color))color='#ffffff';color=color.parseColor();return $R(0,2).map(function(i){return parseInt(color.slice(i*2+1,i*2+3),16)});}
this.transforms=this.style.map(function(pair){var property=pair[0],value=pair[1],unit=null;if(value.parseColor('#zzzzzz')!='#zzzzzz'){value=value.parseColor();unit='color';}else if(property=='opacity'){value=parseFloat(value);if(Prototype.Browser.IE&&(!this.element.currentStyle.hasLayout))
this.element.setStyle({zoom:1});}else if(Element.CSS_LENGTH.test(value)){var components=value.match(/^([\+\-]?[0-9\.]+)(.*)$/);value=parseFloat(components[1]);unit=(components.length==3)?components[2]:null;}
var originalValue=this.element.getStyle(property);return{style:property.camelize(),originalValue:unit=='color'?parseColor(originalValue):parseFloat(originalValue||0),targetValue:unit=='color'?parseColor(value):value,unit:unit};}.bind(this)).reject(function(transform){return((transform.originalValue==transform.targetValue)||(transform.unit!='color'&&(isNaN(transform.originalValue)||isNaN(transform.targetValue))))});},update:function(position){var style={},transform,i=this.transforms.length;while(i--)
style[(transform=this.transforms[i]).style]=transform.unit=='color'?'#'+
(Math.round(transform.originalValue[0]+
(transform.targetValue[0]-transform.originalValue[0])*position)).toColorPart()+
(Math.round(transform.originalValue[1]+
(transform.targetValue[1]-transform.originalValue[1])*position)).toColorPart()+
(Math.round(transform.originalValue[2]+
(transform.targetValue[2]-transform.originalValue[2])*position)).toColorPart():(transform.originalValue+
(transform.targetValue-transform.originalValue)*position).toFixed(3)+
(transform.unit===null?'':transform.unit);this.element.setStyle(style,true);}});Effect.Transform=Class.create({initialize:function(tracks){this.tracks=[];this.options=arguments[1]||{};this.addTracks(tracks);},addTracks:function(tracks){tracks.each(function(track){track=$H(track);var data=track.values().first();this.tracks.push($H({ids:track.keys().first(),effect:Effect.Morph,options:{style:data}}));}.bind(this));return this;},play:function(){return new Effect.Parallel(this.tracks.map(function(track){var ids=track.get('ids'),effect=track.get('effect'),options=track.get('options');var elements=[$(ids)||$$(ids)].flatten();return elements.map(function(e){return new effect(e,Object.extend({sync:true},options))});}).flatten(),this.options);}});Element.CSS_PROPERTIES=$w('backgroundColor backgroundPosition borderBottomColor borderBottomStyle '+'borderBottomWidth borderLeftColor borderLeftStyle borderLeftWidth '+'borderRightColor borderRightStyle borderRightWidth borderSpacing '+'borderTopColor borderTopStyle borderTopWidth bottom clip color '+'fontSize fontWeight height left letterSpacing lineHeight '+'marginBottom marginLeft marginRight marginTop markerOffset maxHeight '+'maxWidth minHeight minWidth opacity outlineColor outlineOffset '+'outlineWidth paddingBottom paddingLeft paddingRight paddingTop '+'right textIndent top width wordSpacing zIndex');Element.CSS_LENGTH=/^(([\+\-]?[0-9\.]+)(em|ex|px|in|cm|mm|pt|pc|\%))|0$/;String.__parseStyleElement=document.createElement('div');String.prototype.parseStyle=function(){var style,styleRules=$H();if(Prototype.Browser.WebKit)
style=new Element('div',{style:this}).style;else{String.__parseStyleElement.innerHTML='<div style="'+this+'"></div>';style=String.__parseStyleElement.childNodes[0].style;}
Element.CSS_PROPERTIES.each(function(property){if(style[property])styleRules.set(property,style[property]);});if(Prototype.Browser.IE&&this.include('opacity'))
styleRules.set('opacity',this.match(/opacity:\s*((?:0|1)?(?:\.\d*)?)/)[1]);return styleRules;};if(document.defaultView&&document.defaultView.getComputedStyle){Element.getStyles=function(element){var css=document.defaultView.getComputedStyle($(element),null);return Element.CSS_PROPERTIES.inject({},function(styles,property){styles[property]=css[property];return styles;});};}else{Element.getStyles=function(element){element=$(element);var css=element.currentStyle,styles;styles=Element.CSS_PROPERTIES.inject({},function(results,property){results[property]=css[property];return results;});if(!styles.opacity)styles.opacity=element.getOpacity();return styles;};};Effect.Methods={morph:function(element,style){element=$(element);new Effect.Morph(element,Object.extend({style:style},arguments[2]||{}));return element;},visualEffect:function(element,effect,options){element=$(element)
var s=effect.dasherize().camelize(),klass=s.charAt(0).toUpperCase()+s.substring(1);new Effect[klass](element,options);return element;},highlight:function(element,options){element=$(element);new Effect.Highlight(element,options);return element;}};$w('fade appear grow shrink fold blindUp blindDown slideUp slideDown '+'pulsate shake puff squish switchOff dropOut').each(function(effect){Effect.Methods[effect]=function(element,options){element=$(element);Effect[effect.charAt(0).toUpperCase()+effect.substring(1)](element,options);return element;}});$w('getInlineOpacity forceRerendering setContentZoom collectTextNodes collectTextNodesIgnoreClass getStyles').each(function(f){Effect.Methods[f]=Element[f];});Element.addMethods(Effect.Methods);
var Window=Class.create();Window.keepMultiModalWindow=false;Window.hasEffectLib=(typeof Effect!='undefined');Window.resizeEffectDuration=0.4;Window.prototype={initialize:function(){var id;var optionIndex=0;if(arguments.length>0){if(typeof arguments[0]=="string"){id=arguments[0];optionIndex=1;}
else
id=arguments[0]?arguments[0].id:null;}
if(!id)
id="window_"+new Date().getTime();if($(id))
alert("Window "+id+" is already registered in the DOM! Make sure you use setDestroyOnClose() or destroyOnClose: true in the constructor");this.options=Object.extend({className:"dialog",blurClassName:null,minWidth:100,minHeight:20,resizable:true,closable:true,minimizable:true,maximizable:true,draggable:true,userData:null,showEffect:(Window.hasEffectLib?Effect.Appear:Element.show),hideEffect:(Window.hasEffectLib?Effect.Fade:Element.hide),showEffectOptions:{},hideEffectOptions:{},effectOptions:null,parent:document.body,title:"&nbsp;",url:null,onload:Prototype.emptyFunction,width:200,height:300,opacity:1,recenterAuto:true,wiredDrag:false,closeCallback:null,destroyOnClose:false,gridX:1,gridY:1},arguments[optionIndex]||{});if(this.options.blurClassName)
this.options.focusClassName=this.options.className;if(typeof this.options.top=="undefined"&&typeof this.options.bottom=="undefined")
this.options.top=this._round(Math.random()*500,this.options.gridY);if(typeof this.options.left=="undefined"&&typeof this.options.right=="undefined")
this.options.left=this._round(Math.random()*500,this.options.gridX);if(this.options.effectOptions){Object.extend(this.options.hideEffectOptions,this.options.effectOptions);Object.extend(this.options.showEffectOptions,this.options.effectOptions);if(this.options.showEffect==Element.Appear)
this.options.showEffectOptions.to=this.options.opacity;}
if(Window.hasEffectLib){if(this.options.showEffect==Effect.Appear)
this.options.showEffectOptions.to=this.options.opacity;if(this.options.hideEffect==Effect.Fade)
this.options.hideEffectOptions.from=this.options.opacity;}
if(this.options.hideEffect==Element.hide)
this.options.hideEffect=function(){Element.hide(this.element);if(this.options.destroyOnClose)this.destroy();}.bind(this)
if(this.options.parent!=document.body)
this.options.parent=$(this.options.parent);this.element=this._createWindow(id);this.element.win=this;this.eventMouseDown=this._initDrag.bindAsEventListener(this);this.eventMouseUp=this._endDrag.bindAsEventListener(this);this.eventMouseMove=this._updateDrag.bindAsEventListener(this);this.eventOnLoad=this._getWindowBorderSize.bindAsEventListener(this);this.eventMouseDownContent=this.toFront.bindAsEventListener(this);this.eventResize=this._recenter.bindAsEventListener(this);this.topbar=$(this.element.id+"_top");this.bottombar=$(this.element.id+"_bottom");this.content=$(this.element.id+"_content");Event.observe(this.topbar,"mousedown",this.eventMouseDown);Event.observe(this.bottombar,"mousedown",this.eventMouseDown);Event.observe(this.content,"mousedown",this.eventMouseDownContent);Event.observe(window,"load",this.eventOnLoad);Event.observe(window,"resize",this.eventResize);Event.observe(window,"scroll",this.eventResize);Event.observe(this.options.parent,"scroll",this.eventResize);if(this.options.draggable){var that=this;[this.topbar,this.topbar.up().previous(),this.topbar.up().next()].each(function(element){element.observe("mousedown",that.eventMouseDown);element.addClassName("top_draggable");});[this.bottombar.up(),this.bottombar.up().previous(),this.bottombar.up().next()].each(function(element){element.observe("mousedown",that.eventMouseDown);element.addClassName("bottom_draggable");});}
if(this.options.resizable){this.sizer=$(this.element.id+"_sizer");Event.observe(this.sizer,"mousedown",this.eventMouseDown);}
this.useLeft=null;this.useTop=null;if(typeof this.options.left!="undefined"){this.element.setStyle({left:parseFloat(this.options.left)+'px'});this.useLeft=true;}
else{this.element.setStyle({right:parseFloat(this.options.right)+'px'});this.useLeft=false;}
if(typeof this.options.top!="undefined"){this.element.setStyle({top:parseFloat(this.options.top)+'px'});this.useTop=true;}
else{this.element.setStyle({bottom:parseFloat(this.options.bottom)+'px'});this.useTop=false;}
this.storedLocation=null;this.setOpacity(this.options.opacity);if(this.options.zIndex)
this.setZIndex(this.options.zIndex)
if(this.options.destroyOnClose)
this.setDestroyOnClose(true);this._getWindowBorderSize();this.width=this.options.width;this.height=this.options.height;this.visible=false;this.constraint=false;this.constraintPad={top:0,left:0,bottom:0,right:0};if(this.width&&this.height)
this.setSize(this.options.width,this.options.height);this.setTitle(this.options.title)
Windows.register(this);},destroy:function(){this._notify("onDestroy");Event.stopObserving(this.topbar,"mousedown",this.eventMouseDown);Event.stopObserving(this.bottombar,"mousedown",this.eventMouseDown);Event.stopObserving(this.content,"mousedown",this.eventMouseDownContent);Event.stopObserving(window,"load",this.eventOnLoad);Event.stopObserving(window,"resize",this.eventResize);Event.stopObserving(window,"scroll",this.eventResize);Event.stopObserving(this.content,"load",this.options.onload);if(this._oldParent){var content=this.getContent();var originalContent=null;for(var i=0;i<content.childNodes.length;i++){originalContent=content.childNodes[i];if(originalContent.nodeType==1)
break;originalContent=null;}
if(originalContent)
this._oldParent.appendChild(originalContent);this._oldParent=null;}
if(this.sizer)
Event.stopObserving(this.sizer,"mousedown",this.eventMouseDown);if(this.options.url)
this.content.src=null
if(this.iefix)
Element.remove(this.iefix);Element.remove(this.element);Windows.unregister(this);},setCloseCallback:function(callback){this.options.closeCallback=callback;},getContent:function(){return this.content;},setContent:function(id,autoresize,autoposition){var element=$(id);if(null==element)throw"Unable to find element '"+id+"' in DOM";this._oldParent=element.parentNode;var d=null;var p=null;if(autoresize)
d=Element.getDimensions(element);if(autoposition)
p=Position.cumulativeOffset(element);var content=this.getContent();this.setHTMLContent("");content=this.getContent();content.appendChild(element);element.show();if(autoresize)
this.setSize(d.width,d.height);if(autoposition)
this.setLocation(p[1]-this.heightN,p[0]-this.widthW);},setHTMLContent:function(html){if(this.options.url){this.content.src=null;this.options.url=null;var content="<div id=\""+this.getId()+"_content\" class=\""+this.options.className+"_content\"> </div>";$(this.getId()+"_table_content").innerHTML=content;this.content=$(this.element.id+"_content");}
this.getContent().innerHTML=html;},setAjaxContent:function(url,options,showCentered,showModal){this.showFunction=showCentered?"showCenter":"show";this.showModal=showModal||false;options=options||{};this.setHTMLContent("");this.onComplete=options.onComplete;if(!this._onCompleteHandler)
this._onCompleteHandler=this._setAjaxContent.bind(this);options.onComplete=this._onCompleteHandler;new Ajax.Request(url,options);options.onComplete=this.onComplete;},_setAjaxContent:function(originalRequest){Element.update(this.getContent(),originalRequest.responseText);if(this.onComplete)
this.onComplete(originalRequest);this.onComplete=null;this[this.showFunction](this.showModal)},setURL:function(url){if(this.options.url)
this.content.src=null;this.options.url=url;var content="<iframe frameborder='0' name='"+this.getId()+"_content'  id='"+this.getId()+"_content' src='"+url+"' width='"+this.width+"' height='"+this.height+"'> </iframe>";$(this.getId()+"_table_content").innerHTML=content;this.content=$(this.element.id+"_content");},getURL:function(){return this.options.url?this.options.url:null;},refresh:function(){if(this.options.url)
$(this.element.getAttribute('id')+'_content').src=this.options.url;},setCookie:function(name,expires,path,domain,secure){name=name||this.element.id;this.cookie=[name,expires,path,domain,secure];var value=WindowUtilities.getCookie(name)
if(value){var values=value.split(',');var x=values[0].split(':');var y=values[1].split(':');var w=parseFloat(values[2]),h=parseFloat(values[3]);var mini=values[4];var maxi=values[5];this.setSize(w,h);if(mini=="true")
this.doMinimize=true;else if(maxi=="true")
this.doMaximize=true;this.useLeft=x[0]=="l";this.useTop=y[0]=="t";this.element.setStyle(this.useLeft?{left:x[1]}:{right:x[1]});this.element.setStyle(this.useTop?{top:y[1]}:{bottom:y[1]});}},getId:function(){return this.element.id;},setDestroyOnClose:function(){this.options.destroyOnClose=true;},setConstraint:function(bool,padding){this.constraint=bool;this.constraintPad=Object.extend(this.constraintPad,padding||{});if(this.useTop&&this.useLeft)
this.setLocation(parseFloat(this.element.style.top),parseFloat(this.element.style.left));},_initDrag:function(event){if(Event.element(event)==this.sizer&&this.isMinimized())
return;if(Event.element(event)!=this.sizer&&this.isMaximized())
return;if(Prototype.Browser.IE&&this.heightN==0)
this._getWindowBorderSize();this.pointer=[this._round(Event.pointerX(event),this.options.gridX),this._round(Event.pointerY(event),this.options.gridY)];if(this.options.wiredDrag)
this.currentDrag=this._createWiredElement();else
this.currentDrag=this.element;if(Event.element(event)==this.sizer){this.doResize=true;this.widthOrg=this.width;this.heightOrg=this.height;this.bottomOrg=parseFloat(this.element.getStyle('bottom'));this.rightOrg=parseFloat(this.element.getStyle('right'));this._notify("onStartResize");}
else{this.doResize=false;var closeButton=$(this.getId()+'_close');if(closeButton&&Position.within(closeButton,this.pointer[0],this.pointer[1])){this.currentDrag=null;return;}
this.toFront();if(!this.options.draggable)
return;this._notify("onStartMove");}
Event.observe(document,"mouseup",this.eventMouseUp,false);Event.observe(document,"mousemove",this.eventMouseMove,false);WindowUtilities.disableScreen('__invisible__','__invisible__',this.overlayOpacity);document.body.ondrag=function(){return false;};document.body.onselectstart=function(){return false;};this.currentDrag.show();Event.stop(event);},_round:function(val,round){return round==1?val:val=Math.floor(val/round)*round;},_updateDrag:function(event){var pointer=[this._round(Event.pointerX(event),this.options.gridX),this._round(Event.pointerY(event),this.options.gridY)];var dx=pointer[0]-this.pointer[0];var dy=pointer[1]-this.pointer[1];if(this.doResize){var w=this.widthOrg+dx;var h=this.heightOrg+dy;dx=this.width-this.widthOrg
dy=this.height-this.heightOrg
if(this.useLeft)
w=this._updateWidthConstraint(w)
else
this.currentDrag.setStyle({right:(this.rightOrg-dx)+'px'});if(this.useTop)
h=this._updateHeightConstraint(h)
else
this.currentDrag.setStyle({bottom:(this.bottomOrg-dy)+'px'});this.setSize(w,h);this._notify("onResize");}
else{this.pointer=pointer;if(this.useLeft){var left=parseFloat(this.currentDrag.getStyle('left'))+dx;var newLeft=this._updateLeftConstraint(left);this.pointer[0]+=newLeft-left;this.currentDrag.setStyle({left:newLeft+'px'});}
else
this.currentDrag.setStyle({right:parseFloat(this.currentDrag.getStyle('right'))-dx+'px'});if(this.useTop){var top=parseFloat(this.currentDrag.getStyle('top'))+dy;var newTop=this._updateTopConstraint(top);this.pointer[1]+=newTop-top;this.currentDrag.setStyle({top:newTop+'px'});}
else
this.currentDrag.setStyle({bottom:parseFloat(this.currentDrag.getStyle('bottom'))-dy+'px'});this._notify("onMove");}
if(this.iefix)
this._fixIEOverlapping();this._removeStoreLocation();Event.stop(event);},_endDrag:function(event){WindowUtilities.enableScreen('__invisible__');if(this.doResize)
this._notify("onEndResize");else
this._notify("onEndMove");Event.stopObserving(document,"mouseup",this.eventMouseUp,false);Event.stopObserving(document,"mousemove",this.eventMouseMove,false);Event.stop(event);this._hideWiredElement();this._saveCookie()
document.body.ondrag=null;document.body.onselectstart=null;},_updateLeftConstraint:function(left){if(this.constraint&&this.useLeft&&this.useTop){var width=this.options.parent==document.body?WindowUtilities.getPageSize().windowWidth:this.options.parent.getDimensions().width;if(left<this.constraintPad.left)
left=this.constraintPad.left;if(left+this.width+this.widthE+this.widthW>width-this.constraintPad.right)
left=width-this.constraintPad.right-this.width-this.widthE-this.widthW;}
return left;},_updateTopConstraint:function(top){if(this.constraint&&this.useLeft&&this.useTop){var height=this.options.parent==document.body?WindowUtilities.getPageSize().windowHeight:this.options.parent.getDimensions().height;var h=this.height+this.heightN+this.heightS;if(top<this.constraintPad.top)
top=this.constraintPad.top;if(top+h>height-this.constraintPad.bottom)
top=height-this.constraintPad.bottom-h;}
return top;},_updateWidthConstraint:function(w){if(this.constraint&&this.useLeft&&this.useTop){var width=this.options.parent==document.body?WindowUtilities.getPageSize().windowWidth:this.options.parent.getDimensions().width;var left=parseFloat(this.element.getStyle("left"));if(left+w+this.widthE+this.widthW>width-this.constraintPad.right)
w=width-this.constraintPad.right-left-this.widthE-this.widthW;}
return w;},_updateHeightConstraint:function(h){if(this.constraint&&this.useLeft&&this.useTop){var height=this.options.parent==document.body?WindowUtilities.getPageSize().windowHeight:this.options.parent.getDimensions().height;var top=parseFloat(this.element.getStyle("top"));if(top+h+this.heightN+this.heightS>height-this.constraintPad.bottom)
h=height-this.constraintPad.bottom-top-this.heightN-this.heightS;}
return h;},_createWindow:function(id){var className=this.options.className;var win=document.createElement("div");win.setAttribute('id',id);win.className="dialog";var content;if(this.options.url)
content="<iframe frameborder=\"0\" name=\""+id+"_content\"  id=\""+id+"_content\" src=\""+this.options.url+"\"> </iframe>";else
content="<div id=\""+id+"_content\" class=\""+className+"_content\"> </div>";var closeDiv=this.options.closable?"<div class='"+className+"_close' id='"+id+"_close' onclick='Windows.close(\""+id+"\", event)'> </div>":"";var minDiv=this.options.minimizable?"<div class='"+className+"_minimize' id='"+id+"_minimize' onclick='Windows.minimize(\""+id+"\", event)'> </div>":"";var maxDiv=this.options.maximizable?"<div class='"+className+"_maximize' id='"+id+"_maximize' onclick='Windows.maximize(\""+id+"\", event)'> </div>":"";var seAttributes=this.options.resizable?"class='"+className+"_sizer' id='"+id+"_sizer'":"class='"+className+"_se'";var blank="../themes/default/blank.gif";win.innerHTML=closeDiv+minDiv+maxDiv+"\
      <table id='"+id+"_row1' class=\"top table_window\">\
        <tr>\
          <td class='"+className+"_nw'></td>\
          <td class='"+className+"_n'><div id='"+id+"_top' class='"+className+"_title title_window'>"+this.options.title+"</div></td>\
          <td class='"+className+"_ne'></td>\
        </tr>\
      </table>\
      <table id='"+id+"_row2' class=\"mid table_window\">\
        <tr>\
          <td class='"+className+"_w'></td>\
            <td id='"+id+"_table_content' class='"+className+"_content' valign='top'>"+content+"</td>\
          <td class='"+className+"_e'></td>\
        </tr>\
      </table>\
        <table id='"+id+"_row3' class=\"bot table_window\">\
        <tr>\
          <td class='"+className+"_sw'></td>\
            <td class='"+className+"_s'><div id='"+id+"_bottom' class='status_bar'><span style='float:left; width:1px; height:1px'></span></div></td>\
            <td "+seAttributes+"></td>\
        </tr>\
      </table>\
    ";Element.hide(win);this.options.parent.insertBefore(win,this.options.parent.firstChild);Event.observe($(id+"_content"),"load",this.options.onload);return win;},changeClassName:function(newClassName){var className=this.options.className;var id=this.getId();$A(["_close","_minimize","_maximize","_sizer","_content"]).each(function(value){this._toggleClassName($(id+value),className+value,newClassName+value)}.bind(this));this._toggleClassName($(id+"_top"),className+"_title",newClassName+"_title");$$("#"+id+" td").each(function(td){td.className=td.className.sub(className,newClassName);});this.options.className=newClassName;},_toggleClassName:function(element,oldClassName,newClassName){if(element){element.removeClassName(oldClassName);element.addClassName(newClassName);}},setLocation:function(top,left){top=this._updateTopConstraint(top);left=this._updateLeftConstraint(left);var e=this.currentDrag||this.element;e.setStyle({top:top+'px'});e.setStyle({left:left+'px'});this.useLeft=true;this.useTop=true;},getLocation:function(){var location={};if(this.useTop)
location=Object.extend(location,{top:this.element.getStyle("top")});else
location=Object.extend(location,{bottom:this.element.getStyle("bottom")});if(this.useLeft)
location=Object.extend(location,{left:this.element.getStyle("left")});else
location=Object.extend(location,{right:this.element.getStyle("right")});return location;},getSize:function(){return{width:this.width,height:this.height};},setSize:function(width,height,useEffect){width=parseFloat(width);height=parseFloat(height);if(!this.minimized&&width<this.options.minWidth)
width=this.options.minWidth;if(!this.minimized&&height<this.options.minHeight)
height=this.options.minHeight;if(this.options.maxHeight&&height>this.options.maxHeight)
height=this.options.maxHeight;if(this.options.maxWidth&&width>this.options.maxWidth)
width=this.options.maxWidth;if(this.useTop&&this.useLeft&&Window.hasEffectLib&&Effect.ResizeWindow&&useEffect){new Effect.ResizeWindow(this,null,null,width,height,{duration:Window.resizeEffectDuration});}else{this.width=width;this.height=height;var e=this.currentDrag?this.currentDrag:this.element;e.setStyle({width:width+this.widthW+this.widthE+"px"})
e.setStyle({height:height+this.heightN+this.heightS+"px"})
if(!this.currentDrag||this.currentDrag==this.element){var content=$(this.element.id+'_content');content.setStyle({height:height+'px'});content.setStyle({width:width+'px'});}}},updateHeight:function(){this.setSize(this.width,this.content.scrollHeight,true);},updateWidth:function(){this.setSize(this.content.scrollWidth,this.height,true);},toFront:function(){if(this.element.style.zIndex<Windows.maxZIndex)
this.setZIndex(Windows.maxZIndex+1);if(this.iefix)
this._fixIEOverlapping();},getBounds:function(insideOnly){if(!this.width||!this.height||!this.visible)
this.computeBounds();var w=this.width;var h=this.height;if(!insideOnly){w+=this.widthW+this.widthE;h+=this.heightN+this.heightS;}
var bounds=Object.extend(this.getLocation(),{width:w+"px",height:h+"px"});return bounds;},computeBounds:function(){if(!this.width||!this.height){var size=WindowUtilities._computeSize(this.content.innerHTML,this.content.id,this.width,this.height,0,this.options.className)
if(this.height)
this.width=size+5
else
this.height=size+5}
this.setSize(this.width,this.height);if(this.centered)
this._center(this.centerTop,this.centerLeft);},show:function(modal){this.visible=true;if(modal){if(typeof this.overlayOpacity=="undefined"){var that=this;setTimeout(function(){that.show(modal)},10);return;}
Windows.addModalWindow(this);this.modal=true;this.setZIndex(Windows.maxZIndex+1);Windows.unsetOverflow(this);}
else
if(!this.element.style.zIndex)
this.setZIndex(Windows.maxZIndex+1);if(this.oldStyle)
this.getContent().setStyle({overflow:this.oldStyle});this.computeBounds();this._notify("onBeforeShow");if(this.options.showEffect!=Element.show&&this.options.showEffectOptions)
this.options.showEffect(this.element,this.options.showEffectOptions);else
this.options.showEffect(this.element);this._checkIEOverlapping();WindowUtilities.focusedWindow=this
this._notify("onShow");},showCenter:function(modal,top,left){this.centered=true;this.centerTop=top;this.centerLeft=left;this.show(modal);},isVisible:function(){return this.visible;},_center:function(top,left){var windowScroll=WindowUtilities.getWindowScroll(this.options.parent);var pageSize=WindowUtilities.getPageSize(this.options.parent);if(typeof top=="undefined")
top=(pageSize.windowHeight-(this.height+this.heightN+this.heightS))/2;top+=windowScroll.top
if(typeof left=="undefined")
left=(pageSize.windowWidth-(this.width+this.widthW+this.widthE))/2;left+=windowScroll.left
this.setLocation(top,left);this.toFront();},_recenter:function(event){if(this.centered){var pageSize=WindowUtilities.getPageSize(this.options.parent);var windowScroll=WindowUtilities.getWindowScroll(this.options.parent);if(this.pageSize&&this.pageSize.windowWidth==pageSize.windowWidth&&this.pageSize.windowHeight==pageSize.windowHeight&&this.windowScroll.left==windowScroll.left&&this.windowScroll.top==windowScroll.top)
return;this.pageSize=pageSize;this.windowScroll=windowScroll;if($('overlay_modal'))
$('overlay_modal').setStyle({height:(pageSize.pageHeight+'px')});if(this.options.recenterAuto)
this._center(this.centerTop,this.centerLeft);}},hide:function(){this.visible=false;if(this.modal){Windows.removeModalWindow(this);Windows.resetOverflow();}
this.oldStyle=this.getContent().getStyle('overflow')||"auto"
this.getContent().setStyle({overflow:"hidden"});this.options.hideEffect(this.element,this.options.hideEffectOptions);if(this.iefix)
this.iefix.hide();if(!this.doNotNotifyHide)
this._notify("onHide");},close:function(){if(this.visible){if(this.options.closeCallback&&!this.options.closeCallback(this))
return;if(this.options.destroyOnClose){var destroyFunc=this.destroy.bind(this);if(this.options.hideEffectOptions.afterFinish){var func=this.options.hideEffectOptions.afterFinish;this.options.hideEffectOptions.afterFinish=function(){func();destroyFunc()}}
else
this.options.hideEffectOptions.afterFinish=function(){destroyFunc()}}
Windows.updateFocusedWindow();this.doNotNotifyHide=true;this.hide();this.doNotNotifyHide=false;this._notify("onClose");}},minimize:function(){if(this.resizing)
return;var r2=$(this.getId()+"_row2");if(!this.minimized){this.minimized=true;var dh=r2.getDimensions().height;this.r2Height=dh;var h=this.element.getHeight()-dh;if(this.useLeft&&this.useTop&&Window.hasEffectLib&&Effect.ResizeWindow){new Effect.ResizeWindow(this,null,null,null,this.height-dh,{duration:Window.resizeEffectDuration});}else{this.height-=dh;this.element.setStyle({height:h+"px"});r2.hide();}
if(!this.useTop){var bottom=parseFloat(this.element.getStyle('bottom'));this.element.setStyle({bottom:(bottom+dh)+'px'});}}
else{this.minimized=false;var dh=this.r2Height;this.r2Height=null;if(this.useLeft&&this.useTop&&Window.hasEffectLib&&Effect.ResizeWindow){new Effect.ResizeWindow(this,null,null,null,this.height+dh,{duration:Window.resizeEffectDuration});}
else{var h=this.element.getHeight()+dh;this.height+=dh;this.element.setStyle({height:h+"px"})
r2.show();}
if(!this.useTop){var bottom=parseFloat(this.element.getStyle('bottom'));this.element.setStyle({bottom:(bottom-dh)+'px'});}
this.toFront();}
this._notify("onMinimize");this._saveCookie()},maximize:function(){if(this.isMinimized()||this.resizing)
return;if(Prototype.Browser.IE&&this.heightN==0)
this._getWindowBorderSize();if(this.storedLocation!=null){this._restoreLocation();if(this.iefix)
this.iefix.hide();}
else{this._storeLocation();Windows.unsetOverflow(this);var windowScroll=WindowUtilities.getWindowScroll(this.options.parent);var pageSize=WindowUtilities.getPageSize(this.options.parent);var left=windowScroll.left;var top=windowScroll.top;if(this.options.parent!=document.body){windowScroll={top:0,left:0,bottom:0,right:0};var dim=this.options.parent.getDimensions();pageSize.windowWidth=dim.width;pageSize.windowHeight=dim.height;top=0;left=0;}
if(this.constraint){pageSize.windowWidth-=Math.max(0,this.constraintPad.left)+Math.max(0,this.constraintPad.right);pageSize.windowHeight-=Math.max(0,this.constraintPad.top)+Math.max(0,this.constraintPad.bottom);left+=Math.max(0,this.constraintPad.left);top+=Math.max(0,this.constraintPad.top);}
var width=pageSize.windowWidth-this.widthW-this.widthE;var height=pageSize.windowHeight-this.heightN-this.heightS;if(this.useLeft&&this.useTop&&Window.hasEffectLib&&Effect.ResizeWindow){new Effect.ResizeWindow(this,top,left,width,height,{duration:Window.resizeEffectDuration});}
else{this.setSize(width,height);this.element.setStyle(this.useLeft?{left:left}:{right:left});this.element.setStyle(this.useTop?{top:top}:{bottom:top});}
this.toFront();if(this.iefix)
this._fixIEOverlapping();}
this._notify("onMaximize");this._saveCookie()},isMinimized:function(){return this.minimized;},isMaximized:function(){return(this.storedLocation!=null);},setOpacity:function(opacity){if(Element.setOpacity)
Element.setOpacity(this.element,opacity);},setZIndex:function(zindex){this.element.setStyle({zIndex:zindex});Windows.updateZindex(zindex,this);},setTitle:function(newTitle){if(!newTitle||newTitle=="")
newTitle="&nbsp;";Element.update(this.element.id+'_top',newTitle);},getTitle:function(){return $(this.element.id+'_top').innerHTML;},setStatusBar:function(element){var statusBar=$(this.getId()+"_bottom");if(typeof(element)=="object"){if(this.bottombar.firstChild)
this.bottombar.replaceChild(element,this.bottombar.firstChild);else
this.bottombar.appendChild(element);}
else
this.bottombar.innerHTML=element;},_checkIEOverlapping:function(){if(!this.iefix&&(navigator.appVersion.indexOf('MSIE')>0)&&(navigator.userAgent.indexOf('Opera')<0)&&(this.element.getStyle('position')=='absolute')){new Insertion.After(this.element.id,'<iframe id="'+this.element.id+'_iefix" '+'style="display:none;position:absolute;filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);" '+'src="javascript:false;" frameborder="0" scrolling="no"></iframe>');this.iefix=$(this.element.id+'_iefix');}
if(this.iefix)
setTimeout(this._fixIEOverlapping.bind(this),50);},_fixIEOverlapping:function(){Position.clone(this.element,this.iefix);this.iefix.style.zIndex=this.element.style.zIndex-1;this.iefix.show();},_getWindowBorderSize:function(event){var div=this._createHiddenDiv(this.options.className+"_n")
this.heightN=Element.getDimensions(div).height;div.parentNode.removeChild(div)
var div=this._createHiddenDiv(this.options.className+"_s")
this.heightS=Element.getDimensions(div).height;div.parentNode.removeChild(div)
var div=this._createHiddenDiv(this.options.className+"_e")
this.widthE=Element.getDimensions(div).width;div.parentNode.removeChild(div)
var div=this._createHiddenDiv(this.options.className+"_w")
this.widthW=Element.getDimensions(div).width;div.parentNode.removeChild(div);var div=document.createElement("div");div.className="overlay_"+this.options.className;document.body.appendChild(div);var that=this;setTimeout(function(){that.overlayOpacity=($(div).getStyle("opacity"));div.parentNode.removeChild(div);},10);if(Prototype.Browser.IE){this.heightS=$(this.getId()+"_row3").getDimensions().height;this.heightN=$(this.getId()+"_row1").getDimensions().height;}
if(Prototype.Browser.WebKit&&Prototype.Browser.WebKitVersion<420)
this.setSize(this.width,this.height);if(this.doMaximize)
this.maximize();if(this.doMinimize)
this.minimize();},_createHiddenDiv:function(className){var objBody=document.body;var win=document.createElement("div");win.setAttribute('id',this.element.id+"_tmp");win.className=className;win.style.display='none';win.innerHTML='';objBody.insertBefore(win,objBody.firstChild);return win;},_storeLocation:function(){if(this.storedLocation==null){this.storedLocation={useTop:this.useTop,useLeft:this.useLeft,top:this.element.getStyle('top'),bottom:this.element.getStyle('bottom'),left:this.element.getStyle('left'),right:this.element.getStyle('right'),width:this.width,height:this.height};}},_restoreLocation:function(){if(this.storedLocation!=null){this.useLeft=this.storedLocation.useLeft;this.useTop=this.storedLocation.useTop;if(this.useLeft&&this.useTop&&Window.hasEffectLib&&Effect.ResizeWindow)
new Effect.ResizeWindow(this,this.storedLocation.top,this.storedLocation.left,this.storedLocation.width,this.storedLocation.height,{duration:Window.resizeEffectDuration});else{this.element.setStyle(this.useLeft?{left:this.storedLocation.left}:{right:this.storedLocation.right});this.element.setStyle(this.useTop?{top:this.storedLocation.top}:{bottom:this.storedLocation.bottom});this.setSize(this.storedLocation.width,this.storedLocation.height);}
Windows.resetOverflow();this._removeStoreLocation();}},_removeStoreLocation:function(){this.storedLocation=null;},_saveCookie:function(){if(this.cookie){var value="";if(this.useLeft)
value+="l:"+(this.storedLocation?this.storedLocation.left:this.element.getStyle('left'))
else
value+="r:"+(this.storedLocation?this.storedLocation.right:this.element.getStyle('right'))
if(this.useTop)
value+=",t:"+(this.storedLocation?this.storedLocation.top:this.element.getStyle('top'))
else
value+=",b:"+(this.storedLocation?this.storedLocation.bottom:this.element.getStyle('bottom'))
value+=","+(this.storedLocation?this.storedLocation.width:this.width);value+=","+(this.storedLocation?this.storedLocation.height:this.height);value+=","+this.isMinimized();value+=","+this.isMaximized();WindowUtilities.setCookie(value,this.cookie)}},_createWiredElement:function(){if(!this.wiredElement){if(Prototype.Browser.IE)
this._getWindowBorderSize();var div=document.createElement("div");div.className="wired_frame "+this.options.className+"_wired_frame";div.style.position='absolute';this.options.parent.insertBefore(div,this.options.parent.firstChild);this.wiredElement=$(div);}
if(this.useLeft)
this.wiredElement.setStyle({left:this.element.getStyle('left')});else
this.wiredElement.setStyle({right:this.element.getStyle('right')});if(this.useTop)
this.wiredElement.setStyle({top:this.element.getStyle('top')});else
this.wiredElement.setStyle({bottom:this.element.getStyle('bottom')});var dim=this.element.getDimensions();this.wiredElement.setStyle({width:dim.width+"px",height:dim.height+"px"});this.wiredElement.setStyle({zIndex:Windows.maxZIndex+30});return this.wiredElement;},_hideWiredElement:function(){if(!this.wiredElement||!this.currentDrag)
return;if(this.currentDrag==this.element)
this.currentDrag=null;else{if(this.useLeft)
this.element.setStyle({left:this.currentDrag.getStyle('left')});else
this.element.setStyle({right:this.currentDrag.getStyle('right')});if(this.useTop)
this.element.setStyle({top:this.currentDrag.getStyle('top')});else
this.element.setStyle({bottom:this.currentDrag.getStyle('bottom')});this.currentDrag.hide();this.currentDrag=null;if(this.doResize)
this.setSize(this.width,this.height);}},_notify:function(eventName){if(this.options[eventName])
this.options[eventName](this);else
Windows.notify(eventName,this);}};var Windows={windows:[],modalWindows:[],observers:[],focusedWindow:null,maxZIndex:0,overlayShowEffectOptions:{duration:0.5},overlayHideEffectOptions:{duration:0.5},addObserver:function(observer){this.removeObserver(observer);this.observers.push(observer);},removeObserver:function(observer){this.observers=this.observers.reject(function(o){return o==observer});},notify:function(eventName,win){this.observers.each(function(o){if(o[eventName])o[eventName](eventName,win);});},getWindow:function(id){return this.windows.detect(function(d){return d.getId()==id});},getFocusedWindow:function(){return this.focusedWindow;},updateFocusedWindow:function(){this.focusedWindow=this.windows.length>=2?this.windows[this.windows.length-2]:null;},register:function(win){this.windows.push(win);},addModalWindow:function(win){if(this.modalWindows.length==0){WindowUtilities.disableScreen(win.options.className,'overlay_modal',win.overlayOpacity,win.getId(),win.options.parent);}
else{if(Window.keepMultiModalWindow){$('overlay_modal').style.zIndex=Windows.maxZIndex+1;Windows.maxZIndex+=1;WindowUtilities._hideSelect(this.modalWindows.last().getId());}
else
this.modalWindows.last().element.hide();WindowUtilities._showSelect(win.getId());}
this.modalWindows.push(win);},removeModalWindow:function(win){this.modalWindows.pop();if(this.modalWindows.length==0)
WindowUtilities.enableScreen();else{if(Window.keepMultiModalWindow){this.modalWindows.last().toFront();WindowUtilities._showSelect(this.modalWindows.last().getId());}
else
this.modalWindows.last().element.show();}},register:function(win){this.windows.push(win);},unregister:function(win){this.windows=this.windows.reject(function(d){return d==win});},closeAll:function(){this.windows.each(function(w){Windows.close(w.getId())});},closeAllModalWindows:function(){WindowUtilities.enableScreen();this.modalWindows.each(function(win){if(win)win.close()});},minimize:function(id,event){var win=this.getWindow(id)
if(win&&win.visible)
win.minimize();Event.stop(event);},maximize:function(id,event){var win=this.getWindow(id)
if(win&&win.visible)
win.maximize();Event.stop(event);},close:function(id,event){var win=this.getWindow(id);if(win)
win.close();if(event)
Event.stop(event);},blur:function(id){var win=this.getWindow(id);if(!win)
return;if(win.options.blurClassName)
win.changeClassName(win.options.blurClassName);if(this.focusedWindow==win)
this.focusedWindow=null;win._notify("onBlur");},focus:function(id){var win=this.getWindow(id);if(!win)
return;if(this.focusedWindow)
this.blur(this.focusedWindow.getId())
if(win.options.focusClassName)
win.changeClassName(win.options.focusClassName);this.focusedWindow=win;win._notify("onFocus");},unsetOverflow:function(except){this.windows.each(function(d){d.oldOverflow=d.getContent().getStyle("overflow")||"auto";d.getContent().setStyle({overflow:"hidden"})});if(except&&except.oldOverflow)
except.getContent().setStyle({overflow:except.oldOverflow});},resetOverflow:function(){this.windows.each(function(d){if(d.oldOverflow)d.getContent().setStyle({overflow:d.oldOverflow})});},updateZindex:function(zindex,win){if(zindex>this.maxZIndex){this.maxZIndex=zindex;if(this.focusedWindow)
this.blur(this.focusedWindow.getId())}
this.focusedWindow=win;if(this.focusedWindow)
this.focus(this.focusedWindow.getId())}};var Dialog={dialogId:null,onCompleteFunc:null,callFunc:null,parameters:null,confirm:function(content,parameters){if(content&&typeof content!="string"){Dialog._runAjaxRequest(content,parameters,Dialog.confirm);return}
content=content||"";parameters=parameters||{};var okLabel=parameters.okLabel?parameters.okLabel:"Ok";var cancelLabel=parameters.cancelLabel?parameters.cancelLabel:"Cancel";parameters=Object.extend(parameters,parameters.windowParameters||{});parameters.windowParameters=parameters.windowParameters||{};parameters.className=parameters.className||"alert";var okButtonClass="class ='"+(parameters.buttonClass?parameters.buttonClass+" ":"")+" ok_button'"
var cancelButtonClass="class ='"+(parameters.buttonClass?parameters.buttonClass+" ":"")+" cancel_button'"
var content="\
      <div class='"+parameters.className+"_message'>"+content+"</div>\
        <div class='"+parameters.className+"_buttons'>\
          <input type='button' value='"+okLabel+"' onclick='Dialog.okCallback()' "+okButtonClass+"/>\
          <input type='button' value='"+cancelLabel+"' onclick='Dialog.cancelCallback()' "+cancelButtonClass+"/>\
        </div>\
    ";return this._openDialog(content,parameters)},alert:function(content,parameters){if(content&&typeof content!="string"){Dialog._runAjaxRequest(content,parameters,Dialog.alert);return}
content=content||"";parameters=parameters||{};var okLabel=parameters.okLabel?parameters.okLabel:"Ok";parameters=Object.extend(parameters,parameters.windowParameters||{});parameters.windowParameters=parameters.windowParameters||{};parameters.className=parameters.className||"alert";var okButtonClass="class ='"+(parameters.buttonClass?parameters.buttonClass+" ":"")+" ok_button'"
var content="\
      <div class='"+parameters.className+"_message'>"+content+"</div>\
        <div class='"+parameters.className+"_buttons'>\
          <input type='button' value='"+okLabel+"' onclick='Dialog.okCallback()' "+okButtonClass+"/>\
        </div>";return this._openDialog(content,parameters)},info:function(content,parameters){if(content&&typeof content!="string"){Dialog._runAjaxRequest(content,parameters,Dialog.info);return}
content=content||"";parameters=parameters||{};parameters=Object.extend(parameters,parameters.windowParameters||{});parameters.windowParameters=parameters.windowParameters||{};parameters.className=parameters.className||"alert";var content="<div id='modal_dialog_message' class='"+parameters.className+"_message'>"+content+"</div>";if(parameters.showProgress)
content+="<div id='modal_dialog_progress' class='"+parameters.className+"_progress'>  </div>";parameters.ok=null;parameters.cancel=null;return this._openDialog(content,parameters)},setInfoMessage:function(message){$('modal_dialog_message').update(message);},closeInfo:function(){Windows.close(this.dialogId);},_openDialog:function(content,parameters){var className=parameters.className;if(!parameters.height&&!parameters.width){parameters.width=WindowUtilities.getPageSize(parameters.options.parent||document.body).pageWidth/2;}
if(parameters.id)
this.dialogId=parameters.id;else{var t=new Date();this.dialogId='modal_dialog_'+t.getTime();parameters.id=this.dialogId;}
if(!parameters.height||!parameters.width){var size=WindowUtilities._computeSize(content,this.dialogId,parameters.width,parameters.height,5,className)
if(parameters.height)
parameters.width=size+5
else
parameters.height=size+5}
parameters.effectOptions=parameters.effectOptions;parameters.resizable=parameters.resizable||false;parameters.minimizable=parameters.minimizable||false;parameters.maximizable=parameters.maximizable||false;parameters.draggable=parameters.draggable||false;parameters.closable=parameters.closable||false;var win=new Window(parameters);win.getContent().innerHTML=content;win.showCenter(true,parameters.top,parameters.left);win.setDestroyOnClose();win.cancelCallback=parameters.onCancel||parameters.cancel;win.okCallback=parameters.onOk||parameters.ok;return win;},_getAjaxContent:function(originalRequest){Dialog.callFunc(originalRequest.responseText,Dialog.parameters)},_runAjaxRequest:function(message,parameters,callFunc){if(message.options==null)
message.options={}
Dialog.onCompleteFunc=message.options.onComplete;Dialog.parameters=parameters;Dialog.callFunc=callFunc;message.options.onComplete=Dialog._getAjaxContent;new Ajax.Request(message.url,message.options);},okCallback:function(){var win=Windows.focusedWindow;if(!win.okCallback||win.okCallback(win)){$$("#"+win.getId()+" input").each(function(element){element.onclick=null;})
win.close();}},cancelCallback:function(){var win=Windows.focusedWindow;$$("#"+win.getId()+" input").each(function(element){element.onclick=null})
win.close();if(win.cancelCallback)
win.cancelCallback(win);}}
if(Prototype.Browser.WebKit){var array=navigator.userAgent.match(new RegExp(/AppleWebKit\/([\d\.\+]*)/));Prototype.Browser.WebKitVersion=parseFloat(array[1]);}
var WindowUtilities={getWindowScroll:function(parent){var T,L,W,H;parent=parent||document.body;if(parent!=document.body){T=parent.scrollTop;L=parent.scrollLeft;W=parent.scrollWidth;H=parent.scrollHeight;}
else{var w=window;with(w.document){if(w.document.documentElement&&documentElement.scrollTop){T=documentElement.scrollTop;L=documentElement.scrollLeft;}else if(w.document.body){T=body.scrollTop;L=body.scrollLeft;}
if(w.innerWidth){W=w.innerWidth;H=w.innerHeight;}else if(w.document.documentElement&&documentElement.clientWidth){W=documentElement.clientWidth;H=documentElement.clientHeight;}else{W=body.offsetWidth;H=body.offsetHeight}}}
return{top:T,left:L,width:W,height:H};},getPageSize:function(parent){parent=parent||document.body;var windowWidth,windowHeight;var pageHeight,pageWidth;if(parent!=document.body){windowWidth=parent.getWidth();windowHeight=parent.getHeight();pageWidth=parent.scrollWidth;pageHeight=parent.scrollHeight;}
else{var xScroll,yScroll;if(window.innerHeight&&window.scrollMaxY){xScroll=document.body.scrollWidth;yScroll=window.innerHeight+window.scrollMaxY;}else if(document.body.scrollHeight>document.body.offsetHeight){xScroll=document.body.scrollWidth;yScroll=document.body.scrollHeight;}else{xScroll=document.body.offsetWidth;yScroll=document.body.offsetHeight;}
if(self.innerHeight){windowWidth=self.innerWidth;windowHeight=self.innerHeight;}else if(document.documentElement&&document.documentElement.clientHeight){windowWidth=document.documentElement.clientWidth;windowHeight=document.documentElement.clientHeight;}else if(document.body){windowWidth=document.body.clientWidth;windowHeight=document.body.clientHeight;}
if(yScroll<windowHeight){pageHeight=windowHeight;}else{pageHeight=yScroll;}
if(xScroll<windowWidth){pageWidth=windowWidth;}else{pageWidth=xScroll;}}
return{pageWidth:pageWidth,pageHeight:pageHeight,windowWidth:windowWidth,windowHeight:windowHeight};},disableScreen:function(className,overlayId,overlayOpacity,contentId,parent){WindowUtilities.initLightbox(overlayId,className,function(){this._disableScreen(className,overlayId,overlayOpacity,contentId)}.bind(this),parent||document.body);},_disableScreen:function(className,overlayId,overlayOpacity,contentId){var objOverlay=$(overlayId);var pageSize=WindowUtilities.getPageSize(objOverlay.parentNode);if(contentId&&Prototype.Browser.IE){WindowUtilities._hideSelect();WindowUtilities._showSelect(contentId);}
objOverlay.style.height=(pageSize.pageHeight+'px');objOverlay.style.display='none';if(overlayId=="overlay_modal"&&Window.hasEffectLib&&Windows.overlayShowEffectOptions){objOverlay.overlayOpacity=overlayOpacity;new Effect.Appear(objOverlay,Object.extend({from:0,to:overlayOpacity},Windows.overlayShowEffectOptions));}
else
objOverlay.style.display="block";},enableScreen:function(id){id=id||'overlay_modal';var objOverlay=$(id);if(objOverlay){if(id=="overlay_modal"&&Window.hasEffectLib&&Windows.overlayHideEffectOptions)
new Effect.Fade(objOverlay,Object.extend({from:objOverlay.overlayOpacity,to:0},Windows.overlayHideEffectOptions));else{objOverlay.style.display='none';objOverlay.parentNode.removeChild(objOverlay);}
if(id!="__invisible__")
WindowUtilities._showSelect();}},_hideSelect:function(id){if(Prototype.Browser.IE){id=id==null?"":"#"+id+" ";$$(id+'select').each(function(element){if(!WindowUtilities.isDefined(element.oldVisibility)){element.oldVisibility=element.style.visibility?element.style.visibility:"visible";element.style.visibility="hidden";}});}},_showSelect:function(id){if(Prototype.Browser.IE){id=id==null?"":"#"+id+" ";$$(id+'select').each(function(element){if(WindowUtilities.isDefined(element.oldVisibility)){try{element.style.visibility=element.oldVisibility;}catch(e){element.style.visibility="visible";}
element.oldVisibility=null;}
else{if(element.style.visibility)
element.style.visibility="visible";}});}},isDefined:function(object){return typeof(object)!="undefined"&&object!=null;},initLightbox:function(id,className,doneHandler,parent){if($(id)){Element.setStyle(id,{zIndex:Windows.maxZIndex+1});Windows.maxZIndex++;doneHandler();}
else{var objOverlay=document.createElement("div");objOverlay.setAttribute('id',id);objOverlay.className="overlay_"+className
objOverlay.style.display='none';objOverlay.style.position='absolute';objOverlay.style.top='0';objOverlay.style.left='0';objOverlay.style.zIndex=Windows.maxZIndex+1;Windows.maxZIndex++;objOverlay.style.width='100%';parent.insertBefore(objOverlay,parent.firstChild);if(Prototype.Browser.WebKit&&id=="overlay_modal"){setTimeout(function(){doneHandler()},10);}
else
doneHandler();}},setCookie:function(value,parameters){document.cookie=parameters[0]+"="+escape(value)+
((parameters[1])?"; expires="+parameters[1].toGMTString():"")+
((parameters[2])?"; path="+parameters[2]:"")+
((parameters[3])?"; domain="+parameters[3]:"")+
((parameters[4])?"; secure":"");},getCookie:function(name){var dc=document.cookie;var prefix=name+"=";var begin=dc.indexOf("; "+prefix);if(begin==-1){begin=dc.indexOf(prefix);if(begin!=0)return null;}else{begin+=2;}
var end=document.cookie.indexOf(";",begin);if(end==-1){end=dc.length;}
return unescape(dc.substring(begin+prefix.length,end));},_computeSize:function(content,id,width,height,margin,className){var objBody=document.body;var tmpObj=document.createElement("div");tmpObj.setAttribute('id',id);tmpObj.className=className+"_content";if(height)
tmpObj.style.height=height+"px"
else
tmpObj.style.width=width+"px"
tmpObj.style.position='absolute';tmpObj.style.top='0';tmpObj.style.left='0';tmpObj.style.display='none';tmpObj.innerHTML=content;objBody.insertBefore(tmpObj,objBody.firstChild);var size;if(height)
size=$(tmpObj).getDimensions().width+margin;else
size=$(tmpObj).getDimensions().height+margin;objBody.removeChild(tmpObj);return size;}}
Effect.ResizeWindow=Class.create();Object.extend(Object.extend(Effect.ResizeWindow.prototype,Effect.Base.prototype),{initialize:function(win,top,left,width,height){this.window=win;this.window.resizing=true;var size=win.getSize();this.initWidth=parseFloat(size.width);this.initHeight=parseFloat(size.height);var location=win.getLocation();this.initTop=parseFloat(location.top);this.initLeft=parseFloat(location.left);this.width=width!=null?parseFloat(width):this.initWidth;this.height=height!=null?parseFloat(height):this.initHeight;this.top=top!=null?parseFloat(top):this.initTop;this.left=left!=null?parseFloat(left):this.initLeft;this.dx=this.left-this.initLeft;this.dy=this.top-this.initTop;this.dw=this.width-this.initWidth;this.dh=this.height-this.initHeight;this.r2=$(this.window.getId()+"_row2");this.content=$(this.window.getId()+"_content");this.contentOverflow=this.content.getStyle("overflow")||"auto";this.content.setStyle({overflow:"hidden"});if(this.window.options.wiredDrag){this.window.currentDrag=win._createWiredElement();this.window.currentDrag.show();this.window.element.hide();}
this.start(arguments[5]);},update:function(position){var width=Math.floor(this.initWidth+this.dw*position);var height=Math.floor(this.initHeight+this.dh*position);var top=Math.floor(this.initTop+this.dy*position);var left=Math.floor(this.initLeft+this.dx*position);if(window.ie){if(Math.floor(height)==0)
this.r2.hide();else if(Math.floor(height)>1)
this.r2.show();}
this.r2.setStyle({height:height});this.window.setSize(width,height);this.window.setLocation(top,left);},finish:function(position){if(this.window.options.wiredDrag){this.window._hideWiredElement();this.window.element.show();}
this.window.setSize(this.width,this.height);this.window.setLocation(this.top,this.left);this.r2.setStyle({height:null});this.content.setStyle({overflow:this.contentOverflow});this.window.resizing=false;}});Effect.ModalSlideDown=function(element){var windowScroll=WindowUtilities.getWindowScroll();var height=element.getStyle("height");element.setStyle({top:-(parseFloat(height)-windowScroll.top)+"px"});element.show();return new Effect.Move(element,Object.extend({x:0,y:parseFloat(height)},arguments[1]||{}));};Effect.ModalSlideUp=function(element){var height=element.getStyle("height");return new Effect.Move(element,Object.extend({x:0,y:-parseFloat(height)},arguments[1]||{}));};PopupEffect=Class.create();PopupEffect.prototype={initialize:function(htmlElement){this.html=$(htmlElement);this.options=Object.extend({className:"popup_effect",duration:0.4},arguments[1]||{});},show:function(element,options){var position=Position.cumulativeOffset(this.html);var size=this.html.getDimensions();var bounds=element.win.getBounds();this.window=element.win;if(!this.div){this.div=document.createElement("div");this.div.className=this.options.className;this.div.style.height=size.height+"px";this.div.style.width=size.width+"px";this.div.style.top=position[1]+"px";this.div.style.left=position[0]+"px";this.div.style.position="absolute"
document.body.appendChild(this.div);}
if(this.options.fromOpacity)
this.div.setStyle({opacity:this.options.fromOpacity})
this.div.show();var style="top:"+bounds.top+";left:"+bounds.left+";width:"+bounds.width+";height:"+bounds.height;if(this.options.toOpacity)
style+=";opacity:"+this.options.toOpacity;new Effect.Morph(this.div,{style:style,duration:this.options.duration,afterFinish:this._showWindow.bind(this)});},hide:function(element,options){var position=Position.cumulativeOffset(this.html);var size=this.html.getDimensions();this.window.visible=true;var bounds=this.window.getBounds();this.window.visible=false;this.window.element.hide();this.div.style.height=bounds.height;this.div.style.width=bounds.width;this.div.style.top=bounds.top;this.div.style.left=bounds.left;if(this.options.toOpacity)
this.div.setStyle({opacity:this.options.toOpacity})
this.div.show();var style="top:"+position[1]+"px;left:"+position[0]+"px;width:"+size.width+"px;height:"+size.height+"px";if(this.options.fromOpacity)
style+=";opacity:"+this.options.fromOpacity;new Effect.Morph(this.div,{style:style,duration:this.options.duration,afterFinish:this._hideDiv.bind(this)});},_showWindow:function(){this.div.hide();this.window.element.show();},_hideDiv:function(){this.div.hide();}}
var detectCity={changeCity:function($city)
{var $locationvalue=(typeof($city)!='undefined')?$('serarch_georegion').value:$('location').value;if(current_region_name){if(window.location.href.indexOf(current_region_name)>-1)
window.location.href=window.location.href.replace(current_region_name+'/',core_regions[$locationvalue]+'/');else
window.location.href=window.location.protocol+'//'+window.location.hostname+'/'+core_regions[$locationvalue]+window.location.pathname;}else{window.location.href=window.location.href.replace(/(.*?\:\/\/.*?\/).*?\/(.*)/,"$1/"+core_regions[$locationvalue]+"/$2");}}};var $coordinates;new Ajax.Request("ajax/get_users_coordinates.php",{method:"get",asynchronous:false,onSuccess:function($list){$coordinates=eval($list.responseText);}});function VSearchWidget(){return this;}
var VSearchWidget=function(_map,_element)
{this.map=_map;this.element=_element;}
VSearchWidget.prototype.output_element;VSearchWidget.prototype.search_form_element;VSearchWidget.prototype.butt_element;VSearchWidget.prototype._marker;VSearchWidget.prototype._geo;VSearchWidget.prototype.lastSearchValue;VSearchWidget.SEARCH=[];VSearchWidget.SEARCH["ru"]='Íàéòè';VSearchWidget.SEARCH["ua"]='Ïîøóê';VSearchWidget.SEARCH["en"]='Search';VSearchWidget.SAMPLE=[];VSearchWidget.SAMPLE["ru"]='Êèåâ, Êðåùàòèê';VSearchWidget.SAMPLE["ua"]='Êè¿â, Õðåùàòèê';VSearchWidget.SAMPLE["en"]='Kiev, Kreschatyk';VSearchWidget.WAIT=[];VSearchWidget.WAIT["ru"]='Ïîæàëóéñòà, ïîäîæäèòå...';VSearchWidget.WAIT["ua"]='Çà÷åêàéòå áóäü ëàñêà...';VSearchWidget.WAIT["en"]='Please wait...';VSearchWidget.NOTFOUND=[];VSearchWidget.NOTFOUND["ru"]='Íè÷åãî íå íàéäåíî';VSearchWidget.NOTFOUND["ua"]='Í³÷îãî íå çíàéäåíî';VSearchWidget.NOTFOUND["en"]='Nothing found';VSearchWidget.DEFAULT_COUNTRY=[];VSearchWidget.DEFAULT_COUNTRY["ru"]='Óêðàèíà';VSearchWidget.DEFAULT_COUNTRY["ua"]='Óêðà¿íà';VSearchWidget.DEFAULT_COUNTRY["en"]='Ukraine';VSearchWidget.prototype.content='<a name="search_widjet" /></a>'+'<table width="100%" height="100%" cellspacing="-2" class = "search_tableCont">'+'<tr>'+'<td width="100%" id=#search_formCont# class = "search_formCont">'+'</td>'+'<td id=#buttonCont#>'+'</td>'+'</tr>'+'<tr>'+'<td colspan=2 id=#outputCont#  class = "outputCont">'+'</td>'+'</tr>'+'</table>';VSearchWidget.prototype.show=function(){var _this=this;var idSearch_formCont=String(Math.random());this.content=this.content.replace("#search_formCont#",idSearch_formCont);var idButtonCont=String(Math.random());this.content=this.content.replace("#buttonCont#",idButtonCont);var idOutputCont=String(Math.random());this.content=this.content.replace("#outputCont#",idOutputCont);this.element.innerHTML=this.content;this.search_formCont_element=document.getElementById(idSearch_formCont);this.buttCont_element=document.getElementById(idButtonCont);this.outputCont_element=document.getElementById(idOutputCont);var idSearch_form=String(Math.random());var search_form=document.createElement("input");search_form.className="Search_form";search_form.id=idSearch_form;search_form.value=$coordinates[3];search_form.type="text";search_form.href="#";search_form.title="Ââîäèòå äàííûå â ôîðìàòå \"Ãîðîä, íàçâàíèå îáëàñòè\" èëè \"Óëèöà, íàçâàíèå ãîðîäà\"";search_form.onfocus=function(){if(search_form.value==VSearchWidget.SAMPLE[_this.map.language()])
{search_form.value="";search_form.style.color="black";_this.output_element.innerHTML="";}}
search_form.onkeyup=function(e){if(!e)e=window.event;if(e.keyCode!='13')return;_this.getList();}
this.search_formCont_element.appendChild(search_form);this.search_form_element=document.getElementById(idSearch_form);var submitButt=document.createElement("input");submitButt.type="button";submitButt.className="Search_button";submitButt.value="";submitButt.href="#";submitButt.onclick=function(){if(search_form.value!=""&&search_form.value!=_this.lastSearchValue)
{_this.getList();_this.lastSearchValue=search_form.value;}}
this.buttCont_element.appendChild(submitButt);var idOutput=String(Math.random());var outputForm=document.createElement("div");outputForm.className="Search_Output";outputForm.id=idOutput;outputForm.style.height=this.element.offsetHeight-this.search_form_element.offsetHeight+"px";outputForm.href="#";this.outputCont_element.appendChild(outputForm);this.output_element=document.getElementById(idOutput);}
VSearchWidget.prototype.showObjectOnMap=function(href){if(href._obj.coords()!=null)
{if(this._geo!=null)
this.map.remove(this._geo);if(this._marker!=null)
this.map.remove(this._marker);if(typeof basemarker!="undefined"){basemarker.coords(href._obj.bounds().center());basemarker.info(href.innerHTML,{width:250,height:40});}
else{basemarker=new VMarker(href._obj.bounds().center());basemarker.info(href.innerHTML,{width:250,height:40});this.map.add(basemarker);}
this.map.center(href._obj.bounds());if(href._obj.coords().length!=2)
{this._geo=new VMultiLine(href._obj.coords());this._geo.color("#ff0000");this._geo.lineWidth(4);this._geo.opacity(0.7);this.map.add(this._geo);}
this.map.repaint();}}
VSearchWidget.prototype.getList=function(){var _this=this;this.output_element.innerHTML="";this.output_element.innerHTML=VSearchWidget.WAIT[this.map.language()];VRemoteCall.request("address",_this.search_form_element.value,function callback(layer){layer._childs.each(function($child,$cpointer){if(typeof($child.country)!='undefined'&&$child.country!='Óêðàèíà')
delete layer._childs[$cpointer];});if(layer.childs().length==0){_this.output_element.innerHTML=VSearchWidget.NOTFOUND[this.map.language()];return;}
_this.output_element.innerHTML="";var countries=[];for(var i=0;i<layer.childs().length;i++){if(typeof(layer.childs(i))=='undefined')
continue;var obj=layer.childs(i);if(obj.country==undefined)
obj.country=VSearchWidget.DEFAULT_COUNTRY[_this.map.language()];if(countries.indexOf(obj.country)<0)
countries.push(obj.country);}
countries=countries.sort().reverse();var data=[];for(i=0;i<layer.childs().length;i++){if(typeof(layer.childs(i))=='undefined')
continue;obj=layer.childs(i);if(data[obj.country]==null)
data[obj.country]=[];data[obj.country].push(obj);}
for($i=0;$i<countries.length;$i++){country=$i;var country_inner_pointer=countries[country];var klop=document.createElement("div");_this.output_element.appendChild(klop);for(i=0;i<data[country_inner_pointer].length;i++){var obj=data[country_inner_pointer][i];var href=document.createElement("a");href.style.textDecoration='none';var name=[];if(obj.settlement)name.push(obj.settlement);if(obj.street)name.push(obj.street);if(obj.name)name.push(obj.name);name=name.join(", ");var description=[];if(obj.district)description.push(obj.district);if(obj.region)description.push(obj.region);if(description.length>0)
description="("+description.join(", ")+")";else
description="";if(USER_DATA.Browser.MSIE){name=utftest(name);}
href.innerHTML="<span style='padding-bottom: 2px;'>"+
name+'</span>';href.href="javascript: ";href._obj=obj;href.onclick=function(){_this.showObjectOnMap(this);}
var addpointshow=document.createElement("span");addpointshow.innerHTML="&nbsp&nbsp<img src=\"img/map/Shild_small.gif\" class=\"cursor_pointer\" title = \"Äîáàâèòü íîâóþ òî÷êó ìàðøðóòà\"/> Äîáàâèòü íîâóþ òî÷êó ìàðøðóòà";addpointshow._obj=obj;addpointshow.onclick=function(){addnewpoint(this._obj.bounds().center());}
var descriptionshow=document.createElement("span");if('\v'=='v'){description=utftest(description);}
descriptionshow.innerHTML="<div style='font-size: 90%; color: gray;'>"+
description+"</div>"
_this.output_element.appendChild(href);_this.output_element.appendChild(addpointshow);_this.output_element.appendChild(descriptionshow);}}});}
var map;function createVisicomMap(){VMap.AUTH_KEY="8787ab15f817b87d1a934e0d786e8d82";map=new VMap($("viewport"));var point={lng:$coordinates[0],lat:$coordinates[1]};map.center(point,$coordinates[2]);var searchWidget=new VSearchWidget(map,document.getElementById("searchWidget"));searchWidget.show();if($coordinates[0]==30.5112&&$coordinates[1]==46.4550){basemarker=new VMarker({lng:30.5112,lat:50.4550});basemarker.draggable(true);map.add(basemarker);map.repaint();}
else{basemarker=new VMarker({lng:$coordinates[0],lat:$coordinates[1]});basemarker.draggable(true);map.add(basemarker);map.repaint();}
VRoute.prototype=new VMapObject();VRoute.prototype._distance=null;VRoute.prototype.distance=function(distance){if(arguments.length==0)return this._distance;this._distance=distance;return this;}
function VRoute(edges){VMapObject.call(this);if(edges!=null)this.edges(edges);this._type="route";return this;}
VRoute.prototype.edges=function(edges){if(arguments.length==0)return this._childs;this._childs=edges;return this;};VEdge.prototype=new VLine();VEdge.prototype._name=null;VEdge.prototype._distance=null;function VEdge(coords){VLine.call(this,coords);return this;}
VEdge.prototype.name=function(name){if(arguments.length==0)return this._name;this._name=name;return this;}
VEdge.prototype.distance=function(distance){if(arguments.length==0)return this._distance;this._distance=distance;return this;}
VMapObject.prototypes["route"]=VRoute.prototype;VMapObject.prototypes["edge"]=VEdge.prototype;}
function var_dump(obj){if(typeof obj=="object"){return"Type: "+typeof(obj)+((obj.constructor)?"\nConstructor: "+obj.constructor:"")+"\nValue: "+obj;}else{return"Type: "+typeof(obj)+"\nValue: "+obj;}}
function makerequest($lat,$lng){new Ajax.Request('ajax/visicomapi.php',{method:'get',asynchronous:false,parameters:{lat:$lat,lng:$lng},onSuccess:function($list){$description=$list.responseText;}});return $description;}
function addinfolable($id){if(typeof infolable=="undefined"){infolable=new Array();}
if(typeof infolable!="undefined"){if(typeof infolable[$id]!="undefined"){infolable[$id].html($F("pointmapinput"));}}
var $show=roadpoints[$id].coords();infolable[$id]=new VLabel($show[0],$F("pointmapinput"));infolable[$id].move(-15,-29);map.add(infolable[$id]);map.repaint();}
function infolablereprint(){if(typeof infolable!="undefined"){for(var i=0;i<infolable.length;i++){if(typeof infolable[i]!="undefined"){var $show=roadpoints[i].coords();infolable[i].coords({lng:$show[0]["lng"],lat:$show[0]["lat"]});infolable[i].move(-15,-29);map.add(infolable[i]);}}
$A(window.map._childs).each(function(child){if(child.type=='label'){child._visible=true;}})
map.repaint();}}
function infolabeldel($id){if(typeof infolable!="undefined"){if(typeof infolable[$id]!="undefined"){map.remove(infolable[$id]);infolable.splice($id,1);map.repaint();}}}
function drowinput($id,$marckerid){var text='';labelid=$marckerid;var el=$($id);var pos=el.cumulativeOffset('img');if(typeof infolable!="undefined"){if(typeof infolable[$marckerid]!="undefined"){text=infolable[$marckerid].html();}}
if(text=="undefined")text='';var $html='<div style="position: absolute; z-index: 15; top:'+(pos[1]+20)+'px; left:'+pos[0]+'px;">'+'<input id="pointmapinput" class="inputmap" type="text" name="login" value="'+text+'" />'+'<input class="inputmap" type="submit" name="submit1" id="setMarkerCaption" value="" />'+'<input class="inputmap" type="submit" name="submit2" id="delMarkerCaption" value="" />'+'</div>';$('inputlable').update($html);$('inputlable').innerHTML;$("pointmapinput").focus();Event.observe($("setMarkerCaption"),'click',function(){if($F("pointmapinput")!='')addinfolable(labelid);$('inputlable').update('');$('buttons').style.display='none';$('buttons').style.display='block';});Event.observe($("delMarkerCaption"),'click',function(){infolabeldel(labelid);$('inputlable').update('');$('buttons').style.display='none';$('buttons').style.display='block';});}
function drowmenu(){var $buttonarray='';for(var i=0;i<roadpoints.length;i++){var $show=roadpoints[i].coords();var $point=makerequest($show[0]["lat"],$show[0]["lng"]);if(i!=0){$buttonarray+='<img src="img/map/leftarr.gif" onClick= "markerchenge('+(i-1)+', '+i+')" class="cursor_pointer"; />';}
$buttonarray+='<img src="img/map/R'+(i+1)+'.gif" width="22" />'+$point;$buttonarray+='<img  id = "marckerdel" onClick= "markerdel('+i+');  infolabeldel('+i+')" src="img/map/cross.gif" alt="" />';$buttonarray+=' <img id="pensil'+i+'" src="img/map/pencil.gif" onClick= "drowinput(pensil'+i+', '+i+')" class="cursor_pointer" />';if(i!=roadpoints.length-1){$buttonarray+='<img src="img/map/rightarr.gif" onClick= "markerchenge('+i+', '+(i+1)+')" class="cursor_pointer" /> &nbsp;';}}
$buttonarray+='&nbsp&nbsp<b onClick= \'backmarshrut()\' class="cursor_pointer";>Îáðàòíûé ìàðøðóò</b>';$('buttons').update($buttonarray);$('buttons').innerHTML;}
function truncateroad(){$A(window.map._childs).each(function(child){if(child.type=='route'||child.type=='label'){map.remove(child);}})
delete road;delete inforoadalert;}
function drowm(){if(roadpoints.length>1){for(var i=0;i<map._childs.length;i++){if(map._childs[i].type=='marker'){window.map._childs[i]._options.draggable=false;}}
var $show1=roadpoints[0].coords();var $distanse=0;road=new Array();if(typeof roadpoints!="undefined"){for(var i=0;i<roadpoints.length-1;i++){var $show1=roadpoints[i].coords();var $show2=roadpoints[(i+1)].coords();VRemoteCall.request("route",{lng:$show1[0]["lng"],lat:$show1[0]["lat"]},{lng:$show2[0]["lng"],lat:$show2[0]["lat"]},function callback(route){if(route==false){for(var i=0;i<map._childs.length;i++){if(map._childs[i].type=='marker'){window.map._childs[i]._options.draggable=true;}}
if(typeof inforoadalert=="undefined"){inforoadalert=new VLabel({lng:$show1[0]["lng"]+($show2[0]["lng"]-$show1[0]["lng"])/2,lat:$show1[0]["lat"]+($show2[0]["lat"]-$show1[0]["lat"])/2},"Íåäîïóñòèìàÿ òî÷êà");map.add(inforoadalert);map.repaint();}}
else{road[i]=route;$distanse=$distanse+road[i].distance();if(typeof inforoadalert=="undefined"){inforoad=new VLabel($show2[0],"Äëèííà ïóòè: "+$distanse/1000+" êì.");inforoad.move(9,-7);map.add(inforoad);}
map.add(road[i]);for(var i=0;i<map._childs.length;i++){if(map._childs[i].type=='marker'){window.map._childs[i]._options.draggable=true;}}
map.repaint();}});}}}}
function backmarshrut(){roadpoints.reverse();for(var $i=0;$i<roadpoints.length;$i++){roadpoints[$i].icon(new VMarkerIcon(30,28,"http://maps.visicom.ua/common/icons/route/R"+($i+1)+".png"));}
drowmenu();truncateroad();drowm();}
function addnewpoint($coords){document.getElementById("searchWidget").style.marginBottom="14px"
if(typeof roadpoints=="undefined"){roadpoints=new Array();$counter=0;}else{var $counter=roadpoints.length;}
roadpoints[$counter]=new VMarker($coords);roadpoints[$counter].icon(new VMarkerIcon(30,28,"http://maps.visicom.ua/common/icons/route/R"+($counter+1)+".png"));roadpoints[$counter].draggable(true);roadpoints[$counter].startdrag(function callback(){truncateroad()});roadpoints[$counter].enddrag(function callback(){drowm();drowmenu();infolablereprint();});map.add(roadpoints[$counter]);if(roadpoints.length>1){truncateroad();drowm();}
drowmenu();map.repaint();}
function markerdel($number){var $count=roadpoints.length;for(var $i=$number;$i<$count-1;$i++){var $showcoords=roadpoints[($i+1)].coords();roadpoints[$i].coords({lng:$showcoords[0]["lng"],lat:$showcoords[0]["lat"]});}
map.remove(roadpoints[($count-1)]);roadpoints.length=$count-1;truncateroad();if(roadpoints.length==0){$('buttons').update('');$('buttons').innerHTML;if(USER_DATA.Browser.MSIE){document.getElementById("searchWidget").style.marginBottom="0px";}
else{document.getElementById("searchWidget").style.marginBottom="28px";}}
else{drowmenu();drowm();}
$('inputlable').update('');$('buttons').style.display='none';$('buttons').style.display='block';}
function markerchenge($number1,$number2){if($number1!=-1&&$number2!=roadpoints.length){if(typeof infolable!="undefined"){if(typeof infolable[$number1]!="undefined"){infolable[$number2]=infolable[$number1];infolable.splice($number1,1);}}
if(typeof infolable!="undefined"){if(typeof infolable[$number2]!="undefined"){infolable[$number1]=infolable[$number2];infolable.splice($number2,1);}}
if(typeof infolable!="undefined"){if(typeof infolable[$number1]!="undefined"&&typeof infolable[$number2]!="undefined"){var $tmp_infolable_1=infolable[$number1];var $tmp_infolable_2=infolable[$number2];infolable[$number1]=$tmp_infolable_2;infolable[$number2]=$tmp_infolable_1;}}
var $showcoords1=roadpoints[$number1].coords();var $showcoords2=roadpoints[$number2].coords();roadpoints[$number1].coords({lng:$showcoords2[0]["lng"],lat:$showcoords2[0]["lat"]});roadpoints[$number2].coords({lng:$showcoords1[0]["lng"],lat:$showcoords1[0]["lat"]});map.repaint();drowmenu();truncateroad();drowm();infolablereprint();}}
function utftest(input){var result=input;var text1="ÀàÁáÂâÃãÄäÅå¨¸ÆæÇçÈèÉéÊêËëÌìÍíÎîÏïÐðÑñÒòÓóÔôÕõÖö×÷ØøÙùÚúÛûÜüÝýÞþßÿ";var text2="Ð[::]Ð°[::]Ð‘[::]Ð±[::]Ð’[::]Ð²[::]Ð“[::]Ð³[::]Ð”[::]Ð´[::]Ð•[::]Ðµ[::]Ð[::]Ñ‘[::]Ð–[::]Ð¶[::]Ð—[::]Ð·[::]Ð?[::]Ð¸[::]Ð™[::]Ð¹[::]Ðš[::]Ðº[::]Ð›[::]Ð»[::]Ðœ[::]Ð¼[::]Ð[::]Ð½[::]Ðž[::]Ð¾[::]ÐŸ[::]Ð¿[::]Ð [::]Ñ€[::]Ð¡[::]Ñ[::]Ð¢[::]Ñ‚[::]Ð£[::]Ñƒ[::]Ð¤[::]Ñ„[::]Ð¥[::]Ñ…[::]Ð¦[::]Ñ†[::]Ð§[::]Ñ‡[::]Ð¨[::]Ñˆ[::]Ð©[::]Ñ‰[::]Ðª[::]ÑŠ[::]Ð«[::]Ñ‹[::]Ð¬[::]ÑŒ[::]Ð­[::]Ñ[::]Ð®[::]ÑŽ[::]Ð¯[::]Ñ";var arr1=text1.split("");var arr2=text2.split("[::]");for(var i=0;i<arr1.length;i++){var temp=result.split(arr2[i]);result=temp.join(arr1[i]);}
return(result);}
function roadpointsarrayadd(i,m){var $show1=roadpoints[i].coords();var $show2=roadpoints[m].coords();VRemoteCall.request("route",{lng:$show1[0]["lng"],lat:$show1[0]["lat"]},{lng:$show2[0]["lng"],lat:$show2[0]["lat"]},function callback(route){distansearray[i][m]=road[i].distance();});};
VMapObject.prototypes=[];var USER_DATA={Browser:{KHTML:/Konqueror|KHTML/.test(navigator.userAgent)&&!/Apple/.test(navigator.userAgent),Chrome:/Chrome/.test(navigator.userAgent),Safari:/KHTML/.test(navigator.userAgent)&&/Apple/.test(navigator.userAgent),Opera:!!window.opera,Mozilla:/Mozilla/.test(navigator.userAgent),MSIE:!!(window.attachEvent&&!window.opera),MSIE_6:/msie 6/i.test(navigator.userAgent),Gecko:/Gecko/.test(navigator.userAgent)&&!/Konqueror|KHTML/.test(navigator.userAgent)},OS:{Windows:navigator.platform.indexOf("Win")>-1,Mac:navigator.platform.indexOf("Mac")>-1,Linux:navigator.platform.indexOf("Linux")>-1}};if(!Array.prototype.push){Array.prototype.push=function(a){return this[this.length]=a}}if(!Array.prototype.forEach){Array.prototype.forEach=function(c,b){b=b||this;for(var a=0;a<this.length;a++){c.call(b,this[a],a,this)}}}if(!Array.indexOf){Array.prototype.indexOf=function(b){for(var a=0;a<this.length;a++){if(this[a]==b){return a}}return-1}}var _VISICOM_MapGlobalContext;function VisicomCommons(){}VisicomCommons.API_URL="http://maps.visicom.ua/api/2.0.0//";VisicomCommons.MAP_NAME="world";VisicomCommons.MSG_SEARCH_ADDRESS="ÐŸÐ¾Ð¸ÑÐº Ð¿Ð¾ Ð°Ð´Ñ€ÐµÑÐ½Ð¾Ð¹ Ð±Ð°Ð·Ðµ";VisicomCommons.MSG_MORE_2="Ð’Ð²ÐµÐ´Ð¸Ñ‚Ðµ Ð±Ð¾Ð»ÐµÐµ 2-Ñ… ÑÐ¸Ð¼Ð²Ð¾Ð»Ð¾Ð²...";VisicomCommons.MSG_PLEASE_WAIT=[];VisicomCommons.MSG_PLEASE_WAIT.ua="Ð—Ð°Ñ‡ÐµÐºÐ°Ð¹Ñ‚Ðµ, Ñ–Ð´Ðµ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ...";VisicomCommons.MSG_PLEASE_WAIT.ru="ÐŸÐ¾Ð´Ð¾Ð¶Ð´Ð¸Ñ‚Ðµ, Ð¸Ð´ÐµÑ‚ Ð·Ð°Ð³Ñ€ÑƒÐ·ÐºÐ°...";VisicomCommons.MSG_PLEASE_WAIT.en="Please wait...";VisicomCommons.MSG_NOT_FOUND=[];VisicomCommons.MSG_NOT_FOUND.ua="ÐÑ–Ñ‡Ð¾Ð³Ð¾ Ð½Ðµ Ð·Ð½Ð°Ð¹Ð´ÐµÐ½Ð¾.";VisicomCommons.MSG_NOT_FOUND.ru="ÐÐµÑ‚ Ñ€ÐµÐ·ÑƒÐ»ÑŒÑ‚Ð°Ñ‚Ð¾Ð².";VisicomCommons.MSG_NOT_FOUND.en="Not found.";VisicomCommons.MSG_SETTLEMENT=[];VisicomCommons.MSG_SETTLEMENT.ua="ÐÑ–Ñ‡Ð¾Ð³Ð¾ Ð½Ðµ Ð·Ð½Ð°Ð¹Ð´ÐµÐ½Ð¾.";VisicomCommons.MSG_SETTLEMENT.ru="ÐÐµÑ‚ Ñ€ÐµÐ·ÑƒÐ»ÑŒÑ‚Ð°Ñ‚Ð¾Ð².";VisicomCommons.MSG_SETTLEMENT.en="Not found.";VisicomCommons.MSG_STREET=[];VisicomCommons.MSG_STREET.ua="ÐÑ–Ñ‡Ð¾Ð³Ð¾ Ð½Ðµ Ð·Ð½Ð°Ð¹Ð´ÐµÐ½Ð¾.";VisicomCommons.MSG_STREET.ru="ÐÐµÑ‚ Ñ€ÐµÐ·ÑƒÐ»ÑŒÑ‚Ð°Ñ‚Ð¾Ð².";VisicomCommons.MSG_STREET.en="Not found.";VisicomCommons.ZINDEX_SMOOTH_LAYER="200";VisicomCommons.ZINDEX_TILE="210";VisicomCommons.ZINDEX_MAP="220";VisicomCommons.ZINDEX_POLYLINE="400";VisicomCommons.ZINDEX_MARKERS="500";VisicomCommons.ZINDEX_MARKERS_HOVER="520";VisicomCommons.ZINDEX_INFOWINDOW_SHADOW="580";VisicomCommons.ZINDEX_LABEL="585";VisicomCommons.ZINDEX_INFOWINDOW="590";VisicomCommons.ZINDEX_INFOWINDOW_HOVER="650";VisicomCommons.ZINDEX_HINT="670";VisicomCommons.ZINDEX_LOGO="700";VisicomCommons.ZINDEX_CONTROLS="700";VisicomCommons.OPEN_HAND_CURSOR='url("'+VisicomCommons.API_URL+'images/cursor/openhand.cur.ico"), default';VisicomCommons.CLOSED_HAND_CURSOR='url("'+VisicomCommons.API_URL+'images/cursor/closedhand.cur.ico"), default';VisicomCommons.PreferableScale=0.1;VisicomCommons.m_EarthRadius=6378137;VisicomCommons.m_scaleFactor=VisicomCommons.m_EarthRadius/VisicomCommons.PreferableScale;VisicomCommons.convertToGeoProjection=function(a,d){var b=VisicomCommons.radToDeg(a/VisicomCommons.m_scaleFactor);d=d/VisicomCommons.m_scaleFactor;var c=VisicomCommons.radToDeg(Math.atan((Math.exp(d)-Math.exp(-d))/2));return{lng:b,lat:c}};VisicomCommons.convertFromGeoProjection=function(c){var a=VisicomCommons.degToRad(c.lng)*VisicomCommons.m_scaleFactor;var b=VisicomCommons.degToRad(c.lat);var d=Math.log(Math.tan(b)+1/Math.cos(b))*VisicomCommons.m_scaleFactor;return{x:a,y:d}};VisicomCommons.radToDeg=function(a){return(a*180)/Math.PI};VisicomCommons.degToRad=function(a){return(Math.PI*a)/180};VisicomCommons.a_BAxis=(1-1/298.257223563)*6378137;VisicomCommons.GeoCalcLen=function(n){var c=n[0];var h=VisicomCommons.degToRad(c.lat);var m=Math.cos(h);var o;var d=0;for(var j=1;j<n.length;j++){c=n[j-1];var b=n[j];if(b.lat==90||b.lat==-90){o=0}else{o=b.lng-c.lng;if(o>180){o=360-o}else{if(o<-180){o=360+o}}o=VisicomCommons.degToRad(o)}var g=VisicomCommons.degToRad(b.lat);var f=g-h;var e=Math.sin(f/2);var a=Math.sin(o/2);var l=Math.cos(g);e=Math.sqrt(e*e+a*a*m*l);if(e>1){e=1}d+=2*Math.asin(e);h=g;m=l}var k=Math.pow(VisicomCommons.m_EarthRadius,(1/3));k*=k*Math.pow(VisicomCommons.a_BAxis,(1/3));return k*d};function _createVisicomMap(){try{createVisicomMap()}catch(a){}}if(window.addEventListener){window.addEventListener("load",_createVisicomMap,false)}else{if(window.attachEvent){window.attachEvent("onload",_createVisicomMap)}}VCustomTile.prototype._parent_map;VCustomTile.prototype._tile;VCustomTile.prototype._url;VCustomTile.prototype._i;VCustomTile.prototype._i;VCustomTile.prototype._left;VCustomTile.prototype._top;VCustomTile.prototype._visible;function VCustomTile(d,c,b,a){if(arguments.length==0){return this}this._parent_map=d;this._i=c;this._j=b;this._url=a;this._left=this._i*VMapTile.TILE_WIDTH;this._top=(this._parent_map._currentMap._height-VMapTile.TILE_HEIGHT)-this._j*VMapTile.TILE_HEIGHT;this._visible=false;return this}VCustomTile.prototype.isVisible=function(){return this._visible};VCustomTile.prototype.getDOMElement=function(){return this._tile};VCustomTile.prototype.show=function(){if(this._tile==null){this._tile=document.createElement("img");this._tile.id="custom_tile_"+this._i+"_"+this._j;this._tile.style.left="0px";this._tile.style.top="0px";this._tile.style.width=VMapTile.TILE_WIDTH;this._tile.style.height=VMapTile.TILE_HEIGHT;this._tile.style.position="absolute";this._tile.style.background="none";this._tile.style.border="0px";this._tile.style.display="none";this._tile.style.zIndex=VCustomTileLayer.ZINDEX;this._tile.src=this._url;this._tile.onload=function(){this.style.display="inline"}}this._parent_map.getDOMElement().appendChild(this._tile);this._visible=true};VCustomTile.prototype.repaint=function(){if(this._tile==null){return}this._tile.style.left=this._parent_map._currentMap._left+this._left+VMapTile.TILE_WIDTH+"px";this._tile.style.top=this._parent_map._currentMap._top+this._top+VMapTile.TILE_HEIGHT+"px"};VCustomTile.prototype.hide=function(){if(this._tile==null){return}try{this._parent_map.getTilesDOMElement().removeChild(this._tile)}catch(a){}this._visible=false};VCustomTileLayer.prototype._visible;VCustomTileLayer.prototype._tiles;VCustomTileLayer.prototype._parent_map;VCustomTileLayer.ZINDEX=221;function VCustomTileLayer(){if(VCustomTileLayer.ZINDEX++>VisicomCommons.ZINDEX_POLYLINE){VCustomTileLayer.ZINDEX=221}this._visible=true;return this}VCustomTileLayer.prototype._init=function(){delete(this._tiles);this._tiles=[]};VCustomTileLayer.prototype._remove=function(){};VCustomTileLayer.prototype.visible=function(a){if(arguments.length==0){return this._visible}this._visible=a;return this};VCustomTileLayer.prototype.getTileURL=function(b,a){return null};VCustomTileLayer.prototype.getTile=function(c,b){var a=this.getTileURL(c,b);if(a==null){return null}if(this._tiles[c]==null){this._tiles[c]=[]}var d=this._tiles[c][b];if(d==null){d=this._tiles[c][b]=new VCustomTile(this._parent_map,c,b,a)}return d};VMapObject.prototype._div;VMapObject.prototype._left;VMapObject.prototype._top;VMapObject.prototype._width;VMapObject.prototype._height;VMapObject.prototype._mouse_over=false;VMapObject.prototype._bounds;VMapObject.prototype._visible=true;VMapObject.prototype._displayed=false;VMapObject.prototype._coords;VMapObject.prototype._parent;VMapObject.prototype._childs;VMapObject.prototype._style;VMapObject.prototype._options;VMapObject.prototype.type;VMapObject.prototype._listeners;VMapObject.prototype.displayed=function(){return this._displayed};VMapObject._wrap=function(e,a){if(a==null){return}var d;if(VMapObject.prototypes[a.type]!=null){d=VMapObject.prototypes[a.type]}else{if(a.coords==null){return}var c=a.coords[0];if(c==null){return}if(c.length!=null){d=VMultiLine.prototype}else{if(a.coords.length==1){d=VMarker.prototype}else{d=VLine.prototype}}}if(d==null){return}for(var f in d){if(d[f]instanceof Function){continue}a[f]=d[f]}for(f in d){if(!(d[f]instanceof Function)){continue}if(a[f]){a["_"+f]=a[f]}a[f]=d[f]}a._listeners=[];a.constructor=d.constructor;if(e){a._parent=e}for(var b=0;b<a._childs.length;b++){VMapObject._wrap(a,a.childs(b))}};function VMapObject(b,a){this._childs=[];this._listeners=[];this._style={};this._options=(a==undefined)?{}:a;if(b!=null){this.coords(b)}else{this._coords=[]}return this}VMapObject.prototype.getDOMElement=function(){return this._div};VMapObject.prototype._pre_init=function(){};VMapObject.prototype.style=function(b){var a=null;if(this._style!=null){a=this._style[b]}if(a==null){if(this._parent==null){return null}return this._parent.style(b)}else{return a}};VMapObject.prototype._handleOptions=function(a){};VMapObject.prototype.options=function(a,b){if(b==null){return this._options[a]}this._options[a]=b;this._handleOptions(a);return this};VMapObject.prototype._init=function(){var a=this._getMap();if(a==null){return}this._pre_init();if(this._isGeo){a._addObject(this)}if(this._childs.forEach==null){return}this._childs.forEach(function(b){b._init()})};VMapObject.prototype._getMap=function(){if(this._type=="map"){return this}if(this._parent==null){return null}if(this._parent==this){return null}if(this._parent instanceof VMap){return this._parent}try{return this._parent._getMap()}catch(a){return null}};VMapObject.prototype._pre_add=function(){};VMapObject.prototype._pre_remove=function(){};VMapObject.prototype.add=function(a){if(a==null){return this}if(a.constructor==Object||a.constructor.toString().match(/function Object/)=="function Object"){VMapObject._wrap(null,a)}if(a._parent!=null){var b=a._visible;a._parent.remove(a);a._visible=b}this._childs.push(a);a._parent=this;this._pre_add(a);return this};VMapObject.prototype.remove=function(a){if(a==null){return this}for(var b=0;b<this._childs.length;b++){if(this._childs[b]!=a){continue}a._remove();this._childs.splice(b,1);a._parent=null;this._pre_remove(a);break}return this};VMapObject.prototype.childs=function(a){if(arguments.length==0){return this._childs}if(a!=null){if(a.length!=null){this._childs=a}else{if(typeof(a)=="number"){return this._childs[a]}}}return this};VMapObject.prototype._pre_coords=function(a){};VMapObject.prototype.coords=function(c){var a=this._pre_coords(c);if(a!=undefined){return a}if(arguments.length==0){return this._coords}if(typeof(c)=="number"){return this._coords[c]}var d=this._getMap();if(d!=null){d._removeObject(this)}if(c.length!=null){if(c[0].type!=null&&c[0].type=="point"){this._coords=[];for(var b=0;b<c.length;b++){this._coords.push(c[b].coords[0])}}else{this._coords=c}}else{if(c.type!=null&&c.type=="point"){this._coords=c.coords()}else{this._coords=[c]}}this._init();this._re_create();return this};VMapObject.prototype._re_create=function(){if(this._displayed){this._hide();this._show()}};VMapObject.prototype.move=function(a,b){this._left+=a;this._top+=b};VMapObject.prototype._pre_show=function(){};VMapObject.prototype._show=function(){if(this._displayed){return}this._pre_show();var a=this._getMap();if(a==null){return}if(this._div!=null){a.getDOMElement().appendChild(this._div)}this._event("show");this._displayed=true};VMapObject.prototype._pre_hide=function(){};VMapObject.prototype._hide=function(){if(!this._displayed){return}this._pre_hide();this._event("hide");var b=this._getMap();try{b.getDOMElement().removeChild(this._div)}catch(a){}this._div=null;this._displayed=false};VMapObject.prototype._pre_visible=function(a){};VMapObject.prototype.visible=function(b){var a=this._pre_visible(b);if(a!=undefined){return a}if(arguments.length==0){return this._visible}this._visible=b;this._childs.forEach(function(c){c.visible(b)});return this};VMapObject.prototype._remove=function(){this._hide();this.visible(false);var a=this._getMap();if(a&&this._isGeo){a._removeObject(this)}this._childs.forEach(function(b){b._remove()})};VMapObject.prototype._pre_repaint=function(){};VMapObject.prototype._repaint=function(){if(this._div==null){return}this._pre_repaint();var b=this._getMap();if(b==null){return}try{this._div.style.left=Math.round(b._currentMap._left+VMapTile.TILE_WIDTH+this._left)+"px";this._div.style.top=Math.round(b._currentMap._top+VMapTile.TILE_HEIGHT+this._top)+"px"}catch(a){}};VMapObject.prototype.bounds=function(){if(this._bounds==null){this._bounds=new VRect(this._coords)}return this._bounds};VMapObject.prototype._event=function(d,c){var a=true;var b=arguments;if(c!=null){this._listeners.push(new VEvent(d,c))}else{this._listeners.forEach(function(f){if(f._event_name!=d){return}var e=f._handler(b[2],b[3],b[4]);a=a&&((e==undefined)?true:e)})}return a};VMapObject.prototype._mouseEvent=function(e,c,d,b){var a=true;if(c!=null){this._listeners.push(new VEvent(e,c))}else{this._listeners.forEach(function(g){if(g._event_name!=e){return}var f=g._handler(d,b);a=a&&((f==undefined)?true:f)})}return a};VMapObject.prototype.mouseclick=function(b,c,a){this._mouseEvent("mouseclick",b,c,a)};VMapObject.prototype.mousedblclick=function(b,c,a){this._mouseEvent("mousedblclick",b,c,a)};VMapObject.prototype.mousedown=function(b,c,a){this._mouseEvent("mousedown",b,c,a)};VMapObject.prototype.mouseup=function(b,c,a){this._mouseEvent("mouseup",b,c,a)};VMapObject.prototype.mousemove=function(b,c,a){this._mouseEvent("mousemove",b,c,a)};VMapObject.prototype.mouseover=function(a,b){this._mouseEvent("mouseover",a,b)};VMapObject.prototype.mouseout=function(a,b){this._mouseEvent("mouseout",a,b)};VMapObject.prototype.startdrag=function(a){this._event("startdrag",a)};VMapObject.prototype.dragging=function(a){this._event("dragging",a)};VMapObject.prototype.enddrag=function(a){this._event("enddrag",a)};VMapObject.prototype.beforezoomchange=function(b,a){return this._event("beforezoomchange",b,a)};VMapObject.prototype.onzoomchange=function(a){return this._event("zoomchange",a)};VMapObject.prototype.onshow=function(a){this._event("show",a)};VMapObject.prototype.onhide=function(a){this._event("hide",a)};function VEvent(b,a){this._event_name=b;this._handler=a;return this}VEvent.prototype._event_name=null;VEvent.prototype._handler=null;VLayer.prototype=new VMapObject();function VLayer(){VMapObject.call(this);this.type="layer"}VLayer.prototype._pre_add=function(a){a._init()};VLayer.prototype.bounds=function(){if(this._bounds){return this._bounds}var c=[];for(var b=0;b<this.childs().length;b++){var d=this.childs(b);for(var a=0;a<d.coords().length;a++){c.push(d.coords(a))}}this._bounds=new VRect(c);return this._bounds};VMap.prototype=new VMapObject();VMap.PROJECTION_FACTOR=0.6664856292953198;VMap.prototype._viewport;VMap.prototype._viewport_inner;VMap.prototype._logo;VMap.prototype._maps=Array();VMap.prototype._currentMap=null;VMap.prototype._draggable_marker=null;VMap.prototype._mapName=null;VMap.prototype._language=null;VMap.prototype._mouse_down;VMap.prototype._dragging;VMap.prototype._dragged_object;VMap.prototype._objects_index;VMap.prototype._map_div;VMap.prototype._tiles_div;VMap.prototype._tiles;VMap.prototype._center;VMap.prototype._zoom_index;VMap.prototype._zoomControl;VMap.prototype._customTileLayers;VMap.prototype._options=null;VMap.prototype._mouse_point=null;VMap.prototype._current_zoom_point=null;VMap.prototype._zoom_helper;VMap.AUTH_KEY="";VMap.prototype.initialized=false;function VMap(a,b){VMapObject.call(this,null,b);this._type="map";this._viewport=a;_VISICOM_MapGlobalContext=this;this._zoomControl=new VZoomControl(this,this.options("zoomControl"));this._tiles=[];this._customTileLayers=[];this._objects_index=[];if(this._zoomControl.options("smooth")){this._zoom_helper=new VZoomHelper(this)}this.init();return this}VMap.prototype.getViewport=function(){return this._viewport_inner};VMap.prototype.getDOMElement=function(){return this._map_div};VMap.prototype.getTilesDOMElement=function(){return this._map_div};VMap.prototype._init_=function(){if(USER_DATA.Browser.MSIE){document.namespaces.add("v","urn:schemas-microsoft-com:vml");var b=document.createElement("style");var a=document.getElementsByTagName("head")[0];if(a==null){a=document.createElement("head");document.body.appendChild(a)}a.appendChild(b);document.styleSheets[0].addRule("v\\:polyline","behavior: url(#default#VML);");document.styleSheets[0].addRule("v\\:line","behavior: url(#default#VML);");document.styleSheets[0].addRule("v\\:stroke","behavior: url(#default#VML);");document.styleSheets[0].addRule("v\\:shape","behavior: url(#default#VML);");document.styleSheets[0].addRule("v\\:fill","behavior: url(#default#VML);");document.styleSheets[0].addRule("v\\:path","behavior: url(#default#VML);")}
var e=(this._viewport.style.left!="")?parseInt(this._viewport.style.left):0;var d=(this._viewport.style.top!="")?parseInt(this._viewport.style.top):0;this._left=e;this._top=d;this._width=this._viewport.offsetWidth;this._height=this._viewport.offsetHeight;this._viewport.style.position="relative";this._viewport_relative=document.createElement("div");this._viewport_inner=document.createElement("div");this._viewport_inner.style.overflow="hidden";this._viewport_inner.style.position="absolute";this._viewport_inner.style.zIndex="1";this._viewport_inner.style.left="0px";this._viewport_inner.style.top="0px";this._viewport_inner.style.width=this._width+"px";this._viewport_inner.style.height=this._height+"px";this._viewport.appendChild(this._viewport_inner);var f=this;window.onmouseup=function(g){f._dragging=false};this._map_div=document.createElement("div");this._map_div.id="visicom_map_div";this._map_div.style.position="absolute";this._map_div.style.left="-"+VMapTile.TILE_WIDTH+"px";this._map_div.style.top="-"+VMapTile.TILE_HEIGHT+"px";this._map_div.style.width=this._width+VMapTile.TILE_WIDTH*2+"px";this._map_div.style.height=this._height+VMapTile.TILE_HEIGHT*2+"px";this._map_div.style.zIndex=VisicomCommons.ZINDEX_MAP;this._map_div.style.cursor=VisicomCommons.OPEN_HAND_CURSOR;VisicomUtils.clearStyles(this._map_div);this._viewport_inner.appendChild(this._map_div);var c=new Object();this._mouse_point=new Object();if(this.options("zoomControl")==null||this.options("zoomControl").mouseWheel!=false){if(USER_DATA.Browser.Opera){VisicomUtils.addHandler(window,"mousewheel",function(g){f._onMouseWheel(g)})}else{if(USER_DATA.Browser.MSIE||USER_DATA.Browser.Chrome){VisicomUtils.addHandler(document,"mousewheel",function(g){f._onMouseWheel(g)})}else{VisicomUtils.addHandler(window,"DOMMouseScroll",function(g){f._onMouseWheel(g)})}}}this._map_div.onmouseover=function(g){if(!g){g=window.event}f._mouse_over=true;f.mouseover()};this._map_div.onmouseout=function(g){if(!g){g=window.event}if(!f._isMouseOnViewport(g.clientX,g.clientY)){f._mouse_over=false;f._mouse_down=false;if(f._dragging){f.enddrag();f._dragging=false}return}f.mouseout()};VisicomUtils.addHandler(document,"mousemove",function(g){if(!f._isMouseOnViewport(g.clientX,g.clientY)){f._mouse_over=false;f._mouse_down=false;if(f._dragging){f.enddrag();f._dragging=false}return}});this._map_div.onmousedown=function(i){var g=0;if(i==undefined){i=window.event;g=window.event.button}else{g=i.which}f._mouseEvent("mousedown",null,f._getCoords(i.clientX,i.clientY),(g==1)?"left":"right");if(g!=1){return}var h=f._currentMap;c.x=i.clientX-h._left;c.y=i.clientY-h._top;if(f._zoom_helper!=null){f._zoom_helper.mousedown(i)}if(!f._mouse_over){return}VInfoWindow._changeWindow();f._mouse_down=true;f._map_div.style.cursor=VisicomCommons.CLOSED_HAND_CURSOR;f.repaint();f._clearSmoothTimer();if(i.stopPropagation){i.stopPropagation()}else{i.cancelBubble=true}if(i.preventDefault){i.preventDefault()}else{i.returnValue=false}};VisicomUtils.addHandler(document,"mousemove",function(i){if(!i){i=window.event}f._current_zoom_point=null;f._mouse_point.x=i.clientX;f._mouse_point.y=i.clientY;var h=f._currentMap;if(f._dragged_object!=null){var g=f._dragged_object;g._moved=true;g.coords(f._getCoords(i.clientX+g._move_delta.dx,i.clientY+g._move_delta.dy));g._pre_show();g._repaint();g.dragging();if(i.stopPropagation){i.stopPropagation()}else{i.cancelBubble=true}if(i.preventDefault){i.preventDefault()}else{i.returnValue=false}f.repaint();return}f._current_zoom_point=f._getCoords(i.clientX,i.clientY);if(!f._mouse_down){f._mouseEvent("mousemove",null,f._getCoords(i.clientX,i.clientY),"left");return}if(!f._dragging){f.startdrag()}h._left=i.clientX-c.x;h._top=i.clientY-c.y;if(f._zoom_helper!=null){f._zoom_helper.mousemove(i)}f._map_div.style.cursor=VisicomCommons.CLOSED_HAND_CURSOR;f.repaint();f.dragging();f._dragging=true;if(i.stopPropagation){i.stopPropagation()}else{i.cancelBubble=true}if(i.preventDefault){i.preventDefault()}else{i.returnValue=false}});this._map_div.onmouseup=function(i){var h=0;if(i==undefined){i=window.event;h=window.event.button}else{h=i.which}if(h!=1){return}f._map_div.style.cursor=VisicomCommons.OPEN_HAND_CURSOR;f._mouseEvent("mouseup",null,f._getCoords(i.clientX,i.clientY),(h==1)?"left":"right");if(f._dragged_object!=null){var g=f._dragged_object;g._onMouseUp(i)}else{if(!f._dragging){f._mouseEvent("mouseclick",null,f._getCoords(i.clientX,i.clientY),(h==1)?"left":"right")}}f._mouse_down=false;if(f._dragging){f.enddrag()}f._dragging=false};this._map_div.ondblclick=function(j){if(!j){j=window.event}var g=0;if(j==undefined){j=window.event;g=window.event.button}else{g=j.which}var h=f._getCoords(j.clientX,j.clientY);f._mouseEvent("mousedblclick",null,h,(g==1)?"left":"right");f._mouse_point.x=j.clientX;f._mouse_point.y=j.clientY;if(f.options("zoomControl")==null||f.options("zoomControl").mouseDblClick!=false){var i=f._currentMap;if(f.zoom()==f._maps.length-1){f._clearSmoothTimer();f._smoothMove(h)}else{if(f._zoomControl.options("smooth")){f._zoom_helper.run(i._zoom_index+1,f._mouse_point)}f._zoomByPoint(f._mouse_point,i._zoom_index+1)}}};this._repaintLogo()};VMap.prototype._smoothMove=function(a,c){var b=Math.random();VMap.MAPS[b]=this;VMap.CALLBACKS[b]=c;VMap.SMOOTH_MOVING_TIMER=setTimeout("VMap.SMOOTH_MOVING("+b+", { lng: "+a.lng+", lat: "+a.lat+" })",10)};VMap.MAPS=[];VMap.CALLBACKS=[];VMap.SMOOTH_MOVING_STEP=17;VMap.prototype.SMOOTH_MOVING_TIMER=null;VMap.SMOOTH_MOVING=function(c,i){var b=VMap.MAPS[c];var l=VMap.CALLBACKS[c];var a=b.center();var j=b._convertToScreenCoords(a);var k=b._convertToScreenCoords(i);var g=Math.sqrt(Math.pow(j.x-k.x,2)+Math.pow(j.y-k.y,2));var d=VMap.SMOOTH_MOVING_STEP;if(g<d){VMap.CLEAR_SMOOTH_TIMER(c);return}var n=(j.x-k.x);var m=(j.y-k.y);var f=n/g;var h=m/g;b._currentMap._left+=d*f;b._currentMap._top+=d*h;b.repaint();if(l!=null){var e=l();if(!e){VMap.CLEAR_SMOOTH_TIMER(c);return}}b.SMOOTH_MOVING_TIMER=setTimeout("VMap.SMOOTH_MOVING("+c+", { lng: "+i.lng+", lat: "+i.lat+" })",10)};VMap.prototype._clearSmoothTimer=function(){clearTimeout(this.SMOOTH_MOVING_TIMER)};VMap.CLEAR_SMOOTH_TIMER=function(b){var a=VMap.MAPS[b];clearTimeout(a.SMOOTH_MOVING_TIMER);VMap.MAPS[b]=null};VMap.prototype._isMouseOnViewport=function(d,b){var c=VisicomUtils.getBounds(this._viewport);var a=d+VisicomUtils.getClientsLeft();var e=b+VisicomUtils.getClientsTop();return!(a-c.left>=this._width||e-c.top>=this._height||a-c.left<=0||e-c.top<=0)};VMap.prototype._getCoords=function(c,a){var e=this._currentMap;var b=VisicomUtils.getBounds(this._viewport);var d=this._convertToGeoCoords((c+VisicomUtils.getClientsLeft())-e._left-b.left,(a+VisicomUtils.getClientsTop())-e._top-b.top,e._units_per_pixel);return d};VMap.prototype._checkPosition=function(){var b=true;var a=Math.round(VMapTile.TILE_WIDTH/2);var d=Math.round(VMapTile.TILE_HEIGHT/2);var c=this._currentMap;if(c._left>(this._width-a)){c._left=this._width-a;b=false}if(c._top>(this._height-d)){c._top=this._height-d;b=false}if(c._width+c._left<a){c._left=a-c._width;b=false}if(c._height+c._top<d){c._top=d-c._height;b=false}return b};VMap.prototype._checkZoom=function(b){var d=this.zoomControl();var a=(d.options("max")!=null)?d.options("max"):this._maps.length-1;var c=(d.options("min")!=null)?d.options("min"):0;return!(b<c||b>a)};VMap.prototype.repaint=function(){if(this._currentMap==null){return this}if(this._viewport_inner==null){return this}this._checkResize();this._repaintMap();return this};VMap.prototype.onpaint=function(a){this._event("onpaint",a)};VMap.prototype.zoomControl=function(){return this._zoomControl};VMap.prototype._showMap=function(){var e=this._currentMap;if(e==null){return}delete(this._tiles);this._tiles=[];if(this._center!=null){var b=(this._center.lng-this.bounds().leftBottom().lng);var d=b/e._units_per_pixel;e._left=Math.round((this._width/2)-d);var a=(this.bounds().rightTop().lat-this._center.lat);var c=a/e._units_per_pixel;e._top=Math.round((this._height/2)-c)}else{d=(this._center.lng-this.bounds().leftBottom().lng)/e._units_per_pixel;e._left=(this._width/2)-d;c=(this._center.lat-this.bounds().leftBottom().lat)/e.__units_per_pixel;e._top=(this._height/2)-c}this._checkPosition();this._initLayers();this._initObjectsIndex();this._repaintMap()};VMap.prototype._repaintMap=function(){var l,f,m,g;var k,e,o,n;var a=this._currentMap;this._checkPosition();if(a._width<this._width){l=k=0;m=o=a._x_tiles_count-1;f=e=0;g=n=a._y_tiles_count-1}else{if(a._left<0){k=Math.floor(Math.abs(a._left)/VMapTile.TILE_WIDTH);o=Math.floor((Math.abs(a._left)+this._width)/VMapTile.TILE_WIDTH)}else{k=0;o=Math.floor((this._width-a._left)/VMapTile.TILE_WIDTH)}if(a._top<0){e=Math.floor((a._height-(Math.abs(a._top)+this._height))/VMapTile.TILE_HEIGHT);n=Math.floor((a._height-Math.abs(a._top))/VMapTile.TILE_HEIGHT)}else{e=Math.floor((a._height-(this._height-a._top))/VMapTile.TILE_HEIGHT);n=a._y_tiles_count-1}l=((a._current_min_i!=null)&&(a._current_min_i<k))?a._current_min_i:k-1;m=((a._current_max_i!=null)&&(a._current_max_i>o))?a._current_max_i:o;f=((a._current_min_j!=null)&&(a._current_min_j<e))?a._current_min_j:e-1;g=((a._current_max_j!=null)&&(a._current_max_j>n))?a._current_max_j:n;l=(l<0)?l=0:l;f=(f<0)?f=0:f;m=(m>=a._x_tiles_count)?m=a._x_tiles_count-1:m;g=(g>=a._y_tiles_count)?g=a._y_tiles_count-1:g}a._current_min_i=k;a._current_max_i=o;a._current_min_j=e;a._current_max_j=n;var d=[];var b=[];for(var h=l;h<=m;h=h+2){for(var c=f+1;c<=g;c=c+2){this._repaintTile(h,c,d,b)}}for(h=l+1;h<=m;h=h+2){for(c=f;c<=g;c=c+2){this._repaintTile(h,c,d,b)}}for(h=l;h<=m;h=h+2){for(c=f;c<=g;c=c+2){this._repaintTile(h,c,d,b)}}for(h=l+1;h<=m;h=h+2){for(c=f+1;c<=g;c=c+2){this._repaintTile(h,c,d,b)}}d.forEach(function(i){if(!i.displayed()){i._show()}i._repaint()});b.forEach(function(i){if(i.displayed()){i._hide()}});this._center=this._convertToGeoCoords(Math.round(this._width/2-this._currentMap._left),Math.round(this._height/2-this._currentMap._top),this._currentMap._units_per_pixel)};VMap.prototype._repaintTile=function(h,g,f,d){var a=this._currentMap;if(this._tiles[h]==null){this._tiles[h]=[]}if(this._tiles[h][g]==null){this._tiles[h][g]=new VMapTile(h,g,this)}var p=this._tiles[h][g];if((h>=a._current_min_i)&&(h<=a._current_max_i)&&(g>=a._current_min_j)&&(g<=a._current_max_j)){if(!p.isVisible()){p.show()}p.repaint();var m=this._customTileLayers.length;for(var c=0;c<m;c++){var k=this._customTileLayers[c];var b=k.getTile(h,g);if(b==null){continue}if(!k.visible()){b.hide();continue}if(!b.isVisible()){b.show()}b.repaint()}if((this._objects_index[h]!=null)&&(this._objects_index[h][g]!=null)){var o=this._objects_index[h][g];if(o.length==0){return}m=o.length;for(var q=0;q<m;q++){var e=o[q];if(e.visible()){if(f.indexOf(e)<0){f.push(e)}var l=d.indexOf(e);if(l>=0){d.splice(l,1)}e._repaint()}else{if(d.indexOf(e)>=0){continue}d.push(e)}}}}else{if(p.isVisible()){p.hide()}m=this._customTileLayers.length;for(c=0;c<m;c++){k=this._customTileLayers[c];b=k.getTile(h,g);if(b==null){continue}if(b.isVisible()){b.hide()}}if((this._objects_index[h]!=null)&&(this._objects_index[h][g]!=null)){o=this._objects_index[h][g];if(o.length==0){return}m=o.length;for(q=0;q<m;q++){e=o[q];if(e.displayed()){if(f.indexOf(e)>=0){continue}if(d.indexOf(e)>=0){continue}d.push(e)}}}}};VMap.prototype._onKeyDown=function(g){if(!this._mouse_over){return}var f=this._currentMap;if(!g){g=window.event}var d=g.keyCode;var a=false;var c=f._left;var b=f._top;switch(d){case 38:b+=Math.round(VIEWPORT_WIDTH/10);a=true;break;case 40:b-=Math.round(VIEWPORT_WIDTH/10);a=true;break;case 37:c+=Math.round(VIEWPORT_HEIGHT/10);a=true;break;case 39:c-=Math.round(VIEWPORT_HEIGHT/10);a=true;break;case 33:b+=Math.round(VIEWPORT_WIDTH/2);a=true;break;case 34:b-=Math.round(VIEWPORT_WIDTH/2);a=true;break;case 36:c+=Math.round(VIEWPORT_WIDTH/2);a=true;break;case 35:c-=Math.round(VIEWPORT_WIDTH/2);a=true;break}if(a){if(((c<=0)&&(c+f._width>VIEWPORT_WIDTH))||((c>0)&&(c+f._width<=VIEWPORT_WIDTH))){f._left=Math.round(c)}if(((b<=0)&&(b+f._height>VIEWPORT_HEIGHT))||((b>0)&&(b+f._height<=VIEWPORT_HEIGHT))){f._top=Math.round(b)}f.repaintMap()}};VMap.prototype._onMouseWheel=function(b){if(!this._isMouseOnViewport(this._mouse_point.x,this._mouse_point.y)){return}var c=this._currentMap;var d=0;if(!b){b=window.event}if(!this._mouse_over){return}if(b.wheelDelta){d=b.wheelDelta/120}else{if(b.detail){d=-b.detail/3}}if(this.MOUSE_WHEEL_INDEX==null){this.MOUSE_WHEEL_INDEX=this.zoom()}var a=this.MOUSE_WHEEL_INDEX+((d<0)?-1:1);if(!this._checkZoom(a)){return}if(Math.abs(a-this.zoom())>2){return}this.MOUSE_WHEEL_INDEX=a;if(this._zoomControl.options("smooth")){this._zoom_helper.run(a,{x:b.clientX,y:b.clientY})}this._zoomControl.position(this.MOUSE_WHEEL_INDEX);this._startMouseWheelTimer(this._mouse_point);if(b.stopPropagation){b.stopPropagation()}else{b.cancelBubble=true}if(b.preventDefault){b.preventDefault()}else{b.returnValue=false}};VMap.prototype.MOUSE_WHEEL_INDEX;VMap.prototype.MOUSE_WHEEL_TIMER=null;VMap.MOUSE_WHEEL_TIMER_INTERVAL=200;VMap.prototype._startMouseWheelTimer=function(a){this._clearMouseWheelTimer();var b=Math.random();VMap.MAPS[b]=this;this.MOUSE_WHEEL_TIMER=setTimeout("VMap.MOUSE_WHEEL_ZOOM("+b+", { x: "+a.x+", y: "+a.y+" })",VMap.MOUSE_WHEEL_TIMER_INTERVAL)};VMap.prototype._clearMouseWheelTimer=function(){clearTimeout(this.MOUSE_WHEEL_TIMER)};VMap.MOUSE_WHEEL_ZOOM=function(c,a){var b=VMap.MAPS[c];if(b==null){return}VInfoWindow._changeWindow();b._zoomByPoint(a,b.MOUSE_WHEEL_INDEX);b.MOUSE_WHEEL_INDEX=null;b.repaint();b._clearMouseWheelTimer()};VMap.prototype._setZoom=function(a){this._clearSmoothTimer();VMarker._closeCurrentHint();this._zoom_index=a;this._zoomControl.position(a);if(this._maps[a]==null){return}if(this._currentMap!=null){this._hide()}this._currentMap=this._maps[a];this._currentMap._tiles_map=[];var b=this._currentMap;b._current_min_i=null;b._current_max_i=null;b._current_min_j=null;b._current_max_j=null};VMap.prototype._zoomByPoint=function(c,d){if(!this._checkZoom(d)){return}if(!this.beforezoomchange(null,d)){return this}var f=VisicomUtils.getBounds(this._viewport);var b=c.x-f.left+VisicomUtils.getClientsLeft();var a=c.y-f.top+VisicomUtils.getClientsTop();this._setZoom(d);var h=this._currentMap;if(h==null){return this}var g=this._current_zoom_point;var e=this._convertToScreenCoords(g);h._left=Math.round(b-e.x);h._top=Math.round(a-e.y);this._checkPosition();this._initLayers();this.repaint();this.onzoomchange();return this};VMap.prototype._hideTiles=function(){var d=this._currentMap;for(var b=d._current_min_i;b<=d._current_max_i;b++){if(this._tiles[b]==null){continue}for(var a=d._current_min_j;a<=d._current_max_j;a++){var c=this._tiles[b][a];if(c!=null){c.hide()}}}delete(this._tiles);this._tiles=[]};VMap.prototype._hide=function(){var e=this._currentMap;for(var c=e._current_min_i;c<=e._current_max_i;c++){if(this._tiles[c]==null){continue}for(var a=e._current_min_j;a<=e._current_max_j;a++){var d=this._tiles[c][a];if(d!=null){d.hide()}}}delete(this._tiles);this._tiles=[];for(var f=0;f<this._customTileLayers.length;f++){var b=this._customTileLayers[f];for(c=e._current_min_i;c<=e._current_max_i;c++){for(a=e._current_min_j;a<=e._current_max_j;a++){d=b.getTile(c,a);if(d==null){continue}d.hide()}}}this._hideLayers();e._current_min_i=e._current_max_i=e._current_min_j=e._current_max_j=null};VMap.prototype.zoom=function(a){if(arguments.length==0){return this._zoom_index}a=parseInt(a);if(this._zoom_index==a){return this}if(this._maps[a]==null){return this}var b=VisicomUtils.getBounds(this._viewport);var c={x:this._width/2+b.left-VisicomUtils.getClientsLeft(),y:this._height/2+b.top-VisicomUtils.getClientsTop()};this._zoom_index=a;VInfoWindow._changeWindow();this._current_zoom_point=this.center();this._zoomByPoint(c,a);return this};VMap.prototype.zoomIn=function(){this._mouse_down=false;var a=this._currentMap._zoom_index+1;if(this._zoom_index==a){return this}if(this._maps[a]==null){return this}var b=VisicomUtils.getBounds(this._viewport);var c={x:this._width/2+b.left-VisicomUtils.getClientsLeft(),y:this._height/2+b.top-VisicomUtils.getClientsTop()};if(this._zoomControl.options("smooth")){this._zoom_helper.run(a,c)}this.zoom(a);return this};VMap.prototype.zoomOut=function(){this._mouse_down=false;var a=this._currentMap._zoom_index-1;if(this._zoom_index==a){return this}if(this._maps[a]==null){return this}var b=VisicomUtils.getBounds(this._viewport);var c={x:this._width/2+b.left-VisicomUtils.getClientsLeft(),y:this._height/2+b.top-VisicomUtils.getClientsTop()};if(this._zoomControl.options("smooth")){this._zoom_helper.run(a,c)}this.zoom(a);return this};VMap.prototype.center=function(d,a){if(arguments.length==0){return this._center}a=(a)?parseInt(a):a;var c=this.zoom();var f=this.center();if(!f){f={lng:-1,lat:-1}}if(d instanceof VRect){this._center=d.center();a=this._getMinZoom(d);if(!this.beforezoomchange(null,a)){return this}this._setZoom(a)}else{if(a!=null){if(!this.beforezoomchange(null,a)){return this}this._setZoom(a)}if(d instanceof Array){this._center=d[0]}else{this._center=d}}var e=this._currentMap;if(e==null){return this}if(f.lng!=this._center.lng||f.lat!=this._center.lat){this._hide();var b=this._convertToScreenCoords(this._center);e._left=Math.round((this._width/2)-b.x);e._top=Math.round((this._height/2)-b.y);this._checkPosition()}if(c!=a){this._initLayers();this.onzoomchange()}this.repaint();return this};VMap.prototype.clientRect=function(){var b=this._convertToGeoCoords(-this._currentMap._left,this._height-this._currentMap._top,this._currentMap._units_per_pixel);var a=this._convertToGeoCoords(this._width-this._currentMap._left,-this._currentMap._top,this._currentMap._units_per_pixel);var c=new VRect(b,a);return c};VMap.prototype._repaintLogo=function(){if(this._logo==null){this._logo=document.getElementById("visicom_copyright_link");if(this._logo==null){this._logo=document.createElement("a");this._logo.href="http://maps.visicom.ua";this._viewport.appendChild(this._logo)}this._logo.href="http://maps.visicom.ua/";this._logo.target="_blank";this._logo.style.position="absolute";this._logo.style.right="2px";this._logo.style.bottom="2px";this._logo.style.zIndex=VisicomCommons.ZINDEX_LOGO;this._logo.style.marginLeft="0px";this._logo.style.marginRight="0px";this._logo.style.marginTop="0px";this._logo.style.marginBottom="0px";this._logo.style.maxWidth="none";this._logo.style.maxHeight="none";if(USER_DATA.Browser.MSIE){this._logo.innerHTML='<img style="background: none;" border="0" width="132" height="21" src="'+VisicomCommons.API_URL+'/images/blank.gif" style="FILTER: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+VisicomCommons.API_URL+"/images/logo-with-alpha.png');\" />"}else{this._logo.innerHTML='<img style="background: none;" border="0" width="132" height="21"  src="'+VisicomCommons.API_URL+'/images/logo-with-alpha.png">'}}};VMap.prototype._checkResize=function(){this._width=this._viewport.offsetWidth;this._height=this._viewport.offsetHeight;this._viewport_inner.style.width=this._width+"px";this._viewport_inner.style.height=this._height+"px";this._map_div.style.width=this._width+VMapTile.TILE_WIDTH*2+"px";this._map_div.style.height=this._height+VMapTile.TILE_HEIGHT*2+"px";this._repaintLogo()};VMap.prototype._initObjectsIndex=function(){delete(this._objects_index);this._objects_index=[]};VMap.prototype._addObject=function(c){if(this._currentMap==null){return}var b=this._currentMap;var a=c.bounds();if(a==null){return}var e=a.leftBottom();var m=a.rightTop();var n=this._convertToScreenCoords(e);var h=Math.floor((Math.abs(n.x))/VMapTile.TILE_WIDTH);var f=Math.floor((b._height-n.y)/VMapTile.TILE_HEIGHT);n=this._convertToScreenCoords(m);var l=Math.floor((Math.abs(n.x))/VMapTile.TILE_WIDTH);var k=Math.floor((b._height-n.y)/VMapTile.TILE_HEIGHT);for(var g=h;g<=l;g++){for(var d=f;d<=k;d++){this._addObjectToIndex(g,d,c)}}};VMap.prototype._removeObject=function(b){var a=b.bounds();if(a==null){return}var m=a.leftBottom();var h=a.rightTop();var l=this._convertToScreenCoords(m);var f=Math.floor((Math.abs(l.x))/VMapTile.TILE_WIDTH);var d=Math.floor((this._currentMap._height-l.y)/VMapTile.TILE_HEIGHT);l=this._convertToScreenCoords(h);var k=Math.floor((Math.abs(l.x))/VMapTile.TILE_WIDTH);var g=Math.floor((this._currentMap._height-l.y)/VMapTile.TILE_HEIGHT);for(var e=f;e<=k;e++){for(var c=d;c<=g;c++){this._removeObjectFromIndex(e,c,b)}}};VMap.prototype._addObjectToIndex=function(c,b,a){var d=this._objects_index[c];if(d==null){this._objects_index[c]=[]}d=this._objects_index[c][b];if(d==null){d=this._objects_index[c][b]=[]}this._objects_index[c][b].push(a)};VMap.prototype._removeObjectFromIndex=function(c,b,a){var f=this._objects_index[c];if(f==null){return}f=f[b];if(f==null){return}for(var e=0;e<f.length;e++){var d=f[e];if(a!=d){continue}f.splice(e,1);break}};VMap.prototype.mapname=function(){return VisicomCommons.MAP_NAME};VMap.prototype.language=function(c,b){if(arguments.length==0){return this._language}var a=this;VRemoteCall.request("language",this._mapName+"_"+c,function(j){var g=VisicomCommons.convertToGeoProjection(j.bounds[0].x,j.bounds[0].y);var d=VisicomCommons.convertToGeoProjection(j.bounds[1].x,j.bounds[1].y);a._bounds=new VRect(g,d);var e=j.zooms;for(var f=0;f<e.length;f++){var h=e[f];var k=a._maps[f];k._base_url=h.base_url;k._units_per_pixel=h.units_per_pixel}a._language=c;a._hideTiles();a.repaint();if(b!=null){b()}});return this};VMap.prototype._convertToScreenCoords=function(e,c){var d=(c!=null)?c:this._currentMap._units_per_pixel;var b=VisicomCommons.convertFromGeoProjection(e);b.x+=this.__maxLng;b.y=this.__maxLat-b.y;var a=b.x/d;var f=b.y/d;return{x:a,y:f}};VMap.prototype._convertToGeoCoords=function(c,b,d){var e=(d!=null)?d:this._currentMap._units_per_pixel;var a=c*e-this.__maxLng;var g=this.__maxLat-b*e;var f=VisicomCommons.convertToGeoProjection(a,g);return f};VMap.prototype._getMinZoom=function(e){var a=this._maps.length-1;if(e.leftBottom().lng==e.rightTop().lng&&e.leftBottom().lat==e.rightTop().lat){return a}for(var c=this._maps.length-1;c>=0;c--){var f=this._maps[c];var g=this._convertToScreenCoords(e.leftBottom(),f._units_per_pixel);var d=this._convertToScreenCoords(e.rightTop(),f._units_per_pixel);var h=d.x-g.x;var b=g.y-d.y;if((this._width>=h)&&(this._height>=b)){a=f._zoom_index;break}}return a};VMap.prototype._pre_add=function(a){if(a instanceof VCustomTileLayer){this._customTileLayers.push(a);a._parent_map=this}a._init()};VMap.prototype._pre_remove=function(b){if(b instanceof VCustomTileLayer){var a=this._customTileLayers.indexOf(b);this._customTileLayers.splice(a,1)}};VMap.prototype._initLayers=function(){this._childs.forEach(function(a){a._init()})};VMap.prototype._hideLayers=function(){var d=this._currentMap;for(var c=d._current_min_i;c<=d._current_max_i;c++){for(var b=d._current_min_j;b<=d._current_max_j;b++){var a=this._objects_index[c];if(a==null){continue}a=a[b];if(a==null){continue}a.forEach(function(e){if(e.displayed()){e._hide()}})}}};VMapZoom.prototype._map;VMapZoom.prototype._left;VMapZoom.prototype._top;VMapZoom.prototype._width;VMapZoom.prototype._height;VMapZoom.prototype._base_url;VMapZoom.prototype._zoom_index;VMapZoom.prototype._units_per_pixel;VMapZoom.prototype._screenOffset;VMapZoom.prototype._x_tiles_count;VMapZoom.prototype._y_tiles_count;VMapZoom.prototype._tiles_map=[];VMapZoom.prototype._current_min_i=null;VMapZoom.prototype._current_min_j=null;VMapZoom.prototype._current_max_i=null;VMapZoom.prototype._current_max_j=null;function VMapZoom(c,a,b,d){this._width=c;this._height=a;this._zoom_index=b;this._map=d;this._x_tiles_count=Math.round(this._width/VMapTile.TILE_WIDTH);this._y_tiles_count=Math.round(this._height/VMapTile.TILE_HEIGHT);this._left=Math.round((d._width-this._width)/2);this._top=Math.round((d._height-this._height)/2);this._tiles_map=[];return this}VMapZoom.prototype._check_tiles=function(){for(var b=this._current_min_i;b<=this._current_max_i;b++){for(var a=this._current_min_j;a<=this._current_max_j;a++){if(this._tiles_map[b]==null){return}if(!this._tiles_map[b][a]){return}}}this._map.onpaint()};VMapZoom.prototype._tile_loaded=function(b,a){if(this._tiles_map[b]==null){this._tiles_map[b]=[]}this._tiles_map[b][a]=true;this._check_tiles()};VMapTile.TILE_WIDTH=256;VMapTile.TILE_HEIGHT=256;VMapTile.TMS_NUMBER=0;VMapTile.MAX_TMS_NUMBER=2;function VMapTile(a,c,b){this._x=a;this._y=c;this._left=this._x*VMapTile.TILE_WIDTH;this._top=(b._currentMap._height-VMapTile.TILE_HEIGHT)-this._y*VMapTile.TILE_HEIGHT;this._parent_map=b;this._error_counter=0;return this}VMapTile.prototype._parent_map;VMapTile.prototype._x;VMapTile.prototype._y;VMapTile.prototype._left;VMapTile.prototype._top;VMapTile.prototype._width;VMapTile.prototype._height;VMapTile.prototype._tile=null;VMapTile.prototype._visible=false;VMapTile.prototype.getX=function(){return this._x};VMapTile.prototype.getY=function(){return this._y};VMapTile.prototype.getLeft=function(){return this._left};VMapTile.prototype.getTop=function(){return this._top};VMapTile.prototype.isVisible=function(){return this._visible};VMapTile.prototype._error_counter;VMapTile.prototype.getDOMElement=function(){return this._tile};VMapTile.getTmsNumber=function(a,b){return((a%2>0)?0:1)+((b%2>0)?0:1)};VMapTile.prototype.show=function(){if(this._tile==null){this._tile=document.createElement("img");this._tile.id="tile_"+this._parent_map.zoom()+"_"+this._x+"_"+this._y;this._tile.style.left="0px";this._tile.style.top="0px";this._tile.style.width=VMapTile.TILE_WIDTH;this._tile.style.height=VMapTile.TILE_HEIGHT;this._tile.style.position="absolute";this._tile.style.background="none";this._tile.style.border="0px";this._tile.style.display="none";var a=this._parent_map._currentMap._base_url;a=a.replace(/tms\./,"tms"+VMapTile.getTmsNumber(this._x,this._y)+".");this._tile.src=a+"/"+this._x+"/"+this._y+".png";if(this._tile.complete){this._tile.style.display="block"}var b=this;this._tile.onload=function(){b._tile.style.display="block";b._parent_map._currentMap._tile_loaded(b._x,b._y)};this._tile.style.zIndex="101";this._tile.onerror=function(c){b._error_counter++;if(b._error_counter>VMapTile.MAX_TMS_NUMBER){b._tile.onerror=null;return}VMapTile.TMS_NUMBER++;if(VMapTile.TMS_NUMBER>VMapTile.MAX_TMS_NUMBER){VMapTile.TMS_NUMBER=0}a=b._parent_map._currentMap._base_url;a=a.replace(/tms\./,"tms"+VMapTile.TMS_NUMBER+".");b._tile.src=a+"/"+b._x+"/"+b._y+".png"}}this._parent_map.getTilesDOMElement().appendChild(this._tile);this._visible=true};VMapTile.prototype.repaint=function(){if(this._tile==null){return}var b=0;var a=0;this._tile.style.left=b+this._parent_map._currentMap._left+this._left+VMapTile.TILE_WIDTH+"px";this._tile.style.top=a+this._parent_map._currentMap._top+this._top+VMapTile.TILE_HEIGHT+"px"};VMapTile.prototype.hide=function(){try{this._parent_map.getTilesDOMElement().removeChild(this._tile)}catch(a){}this._visible=false};VZoomHelper.prototype.map;VZoomHelper.prototype.tiles;VZoomHelper.prototype.base_width;VZoomHelper.prototype.base_height;VZoomHelper.prototype.current_width;VZoomHelper.prototype.current_height;VZoomHelper.prototype.next_width;VZoomHelper.prototype.next_height;VZoomHelper.prototype.current_zoom;VZoomHelper.prototype.dest_zoom;VZoomHelper.prototype.div;VZoomHelper.prototype.is_run;VZoomHelper.prototype.onpaint;VZoomHelper.prototype.center;VZoomHelper.prototype._isMousedown;VZoomHelper.prototype._mouseCoords;VZoomHelper.prototype.coords;VZoomHelper.prototype.counter;VZoomHelper.prototype.clear_timer;VZoomHelper.prototype.steps;VZoomHelper.steps=8;VZoomHelper.delay=40;function VZoomHelper(a){this.map=a;this._isMousedown=false;var b=this;this.map.onpaint(function(){b.onpaint=true;if(b.div==null){return}if(b.is_run){return}var c=Math.random();VZoomHelper.INSTANCES[c]=b;b.clear_timer=setTimeout("VZoomHelper.clear("+c+");",10)})}VZoomHelper.prototype.create=function(){this.tiles=[];this.center=this.map.center();var e=this.map._currentMap;if(this.div!=null){this.map.getViewport().removeChild(this.div)}this.div=document.createElement("div");this.div.style.position="absolute";this.div.style.left="0px";this.div.style.top="0px";this.div.style.width=this.map._width+"px";this.div.style.height=this.map._height+"px";this.div.style.zIndex=VisicomCommons.ZINDEX_SMOOTH_LAYER;this.map.getViewport().appendChild(this.div);var f=this;this._mouseCoords={};VisicomUtils.addHandler(document,"mousedown",function(g){if(!g){g=window.event}f.mousedown(g)});VisicomUtils.addHandler(document,"mousemove",function(g){if(!f._isMousedown){return}f.mousemove(g)});VisicomUtils.addHandler(document,"mouseup",function(g){if(!g){g=window.event}f._isMousedown=false;if(g.stopPropagation){g.stopPropagation()}else{g.cancelBubble=true}if(g.preventDefault){g.preventDefault()}else{g.returnValue=false}});for(var c=e._current_min_i;c<=e._current_max_i;c++){if(this.map._tiles[c]==null){continue}for(var a=e._current_min_j;a<=e._current_max_j;a++){var d=this.map._tiles[c][a];var b=d.getDOMElement();d.left=b.offsetLeft-VMapTile.TILE_WIDTH;d.top=b.offsetTop-VMapTile.TILE_HEIGHT;d.width=b.offsetWidth;d.height=b.offsetHeight;this.setData(d);this.div.appendChild(b);this.tiles.push(d)}}};VZoomHelper.prototype.mousemove=function(a){if(!a){a=window.event}if(this.div==null){return}this.div.style.left=this.div.offsetLeft+(a.clientX-this._mouseCoords.x)+"px";this.div.style.top=this.div.offsetTop+(a.clientY-this._mouseCoords.y)+"px";this._mouseCoords.x=a.clientX;this._mouseCoords.y=a.clientY;if(a.stopPropagation){a.stopPropagation()}else{a.cancelBubble=true}if(a.preventDefault){a.preventDefault()}else{a.returnValue=false}};VZoomHelper.prototype.mousedown=function(a){if(this.div==null){return}this._isMousedown=true;this._mouseCoords.x=a.clientX;this._mouseCoords.y=a.clientY;if(a.stopPropagation){a.stopPropagation()}else{a.cancelBubble=true}if(a.preventDefault){a.preventDefault()}else{a.returnValue=false}};VZoomHelper.prototype.setNext=function(){var a=(this.dest_zoom>this.current_zoom)?1:-1;var c=Math.abs(this.dest_zoom-this.current_zoom);this.steps=VZoomHelper.steps;var b=Math.pow(Math.abs(this.dest_zoom-this.current_zoom),2)/this.steps;if(a<0){b=b/2}this.next_width=this.current_width+a*b*this.current_width;this.next_height=this.current_height+a*b*this.current_height};VZoomHelper.prototype.setData=function(b){var a=b.getDOMElement();a.style.left=b.left+"px";a.style.top=b.top+"px";a.style.width=b.width+"px";a.style.height=b.height+"px"};VZoomHelper.prototype.run=function(a,b){this.dest_zoom=a;this.coords=b;if(this.is_run){return}if(this.clear_timer!=null){clearTimeout(this.clear_timer);this.clear_timer=null}this.create();this.current_zoom=this.map.zoom();this.current_width=VMapTile.TILE_WIDTH;this.current_height=VMapTile.TILE_HEIGHT;this.base_width=VMapTile.TILE_WIDTH;this.base_height=VMapTile.TILE_WIDTH;this.next_width=this.current_width;this.next_height=this.current_height;this.counter=0;this.map.getDOMElement().style.display="none";this.map.getTilesDOMElement().style.display="none";var c=Math.random();VZoomHelper.INSTANCES[c]=this;setTimeout("VZoomHelper.onTimer("+c+");",20);this.is_run=true;this.onpaint=false};VZoomHelper.INSTANCES=[];VZoomHelper.onTimer=function(e){var d=VZoomHelper.INSTANCES[e];d.counter++;if(d.counter>=d.steps-1){VZoomHelper.INSTANCES[e]=null;d.stop();return}d.setNext();var c=VisicomUtils.getBounds(d.map._viewport);for(var a in d.tiles){if(a=="forEach"||a=="indexOf"||a==""){continue}var b=d.tiles[a];b.left+=((d.coords.x-b.left-c.left+VisicomUtils.getClientsLeft())/d.current_width)*(d.current_width-d.next_width);b.top+=((d.coords.y-b.top-c.top+VisicomUtils.getClientsTop())/d.current_height)*(d.current_height-d.next_height);b.width=d.next_width+1;b.height=d.next_height+1;d.setData(b)}d.current_width=d.next_width;d.current_height=d.next_height;setTimeout("VZoomHelper.onTimer("+e+");",VZoomHelper.delay)};VZoomHelper.prototype.stop=function(){this.is_run=false;this.map.getDOMElement().style.display="block";this.map.getTilesDOMElement().style.display="block";if(!this.onpaint){return}var a=Math.random();VZoomHelper.INSTANCES[a]=this;this.clear_timer=setTimeout("VZoomHelper.clear("+a+");",20)};VZoomHelper.clear=function(c){var b=VZoomHelper.INSTANCES[c];try{b.map.getViewport().removeChild(b.div)}catch(a){}b.div=null;VZoomHelper.INSTANCES[c]=null;b.is_run=false};var VisicomUtils=(function(){function e(h){if(h==null){return(null)}var k=h.offsetLeft;var j=h.offsetTop;for(var i=h.offsetParent;i;i=i.offsetParent){k+=i.offsetLeft;j+=i.offsetTop}return{left:k,top:j,width:h.offsetWidth,height:h.offsetHeight}}function a(){var h=self.pageYOffset||(document.documentElement&&document.documentElement.scrollTop)||(document.body&&document.body.scrollTop);return h}function d(){var h=self.pageXOffset||(document.documentElement&&document.documentElement.scrollLeft)||(document.body&&document.body.scrollLeft);return h}function b(h){if(h.style.align){h.style.align="none"}if(h.style.backgroundColor){h.style.backgroundColor="none"}h.style.backgroundImage="none";if(h.style.margin){h.style.margin="none"}h.style.marginBottom="0px";h.style.marginLeft="0px";h.style.marginRight="0px";h.style.marginLeft="0px";if(h.style.padding){h.style.padding="none"}if(h.style.border){h.style.border="none"}h.style.fontSize="0px";h.style.outline="none";h.style.verticalAlign="baseline"}function f(i,k,j,h){if(i.addEventListener){i.addEventListener(k,j,h?h:false)}else{if(i.attachEvent){i.attachEvent("on"+k,j)}}}function c(m){var k="0123456789ABCDEF";if(m<0){return"00"}if(m>255){return"FF"}var l=Math.floor(m/16);var h=m%16;return k.charAt(l)+k.charAt(h)}function g(i,h){for(var j in i){h[j]=i[j]}}return{getBounds:e,getClientsTop:a,getClientsLeft:d,addHandler:f,toHex:c,clearStyles:b,copy:g}})();VRect.prototype=new VMapObject();VRect.prototype.leftBottom=function(){return this._coords[0]};VRect.prototype.rightTop=function(){return this._coords[1]};function VRect(){VMapObject.call(this);if(arguments.length==1){this._coords=(arguments[0]instanceof Array)?this.create(arguments[0]):this.create([arguments[0]])}else{if(arguments.length==2){this._coords[0]=arguments[0];this._coords[1]=arguments[1]}}return this}VRect.prototype.contains=function(a){return(a.lng>=this._coords[0].lng)&&(a.lng<=this._coords[1].lng)&&(a.lat>=this._coords[0].lat)&&(a.lat<=this._coords[1].lat)};VRect.prototype.create=function(h){var g=null;var e=null;var c=null;var a=null;for(var b=0;b<h.length;b++){var j=h[b];var f=j.lng;var d=j.lat;if((f<g)||(g==null)){g=f}if((d<e)||(e==null)){e=d}if((f>c)||(c==null)){c=f}if((d>a)||(a==null)){a=d}}return[{lng:g,lat:e},{lng:c,lat:a}]};VRect.prototype.center=function(){var a=this.leftBottom().lng+(this.rightTop().lng-this.leftBottom().lng)/2;var b=this.leftBottom().lat+(this.rightTop().lat-this.leftBottom().lat)/2;return{lng:a,lat:b}};VZoomControl.prototype=new VMapObject();VZoomControl.prototype._zoom_in;VZoomControl.prototype._ruler;VZoomControl.prototype._runner;VZoomControl.prototype._zoom_out;VZoomControl.ZOOM_IN_WIDTH=17;VZoomControl.ZOOM_OUT_WIDTH=17;VZoomControl.ZOOM_IN_HEIGHT=17;VZoomControl.ZOOM_OUT_HEIGHT=17;VZoomControl.RULER_ITEM_WIDTH=17;VZoomControl.RULER_ITEM_TOP_HEIGHT=16;VZoomControl.RULER_ITEM_MIDDLE_HEIGHT=14;VZoomControl.RULER_ITEM_BOTTOM_HEIGHT=16;function VZoomControl(b,a){VMapObject.call(this,null,a);this._parent=b;return this}VZoomControl.prototype.getDOMElement=function(){return this._div};VZoomControl.prototype._createRuler=function(){this._ruler=document.createElement("div");this._ruler.style.position="relative";this._ruler.style.background="none";this._ruler.style.zIndex=VisicomCommons.ZINDEX_CONTROLS;this._ruler.style.padding="0px";this._ruler.style.border="0px";this._ruler.style.width=VZoomControl.RULER_ITEM_WIDTH+"px";this._ruler.style.cursor="pointer";var h=(this.options("max")!=null)?this.options("max"):this._parent._maps.length-1;var c=(this.options("min")!=null)?this.options("min"):0;var g=h-c;this._ruler.style.height=((g+1)*VZoomControl.RULER_ITEM_MIDDLE_HEIGHT)+"px";for(var d=g;d>=0;d--){var k=document.createElement("img");this._ruler.appendChild(k);k.style.position="absolute";k.style.border="0px";k.style.cursor="pointer";k.style.margin="0px";k.style.left="0px";var a=g-d;if(d==g){k.src=VisicomCommons.API_URL+"/images/zoom/ruler-top.gif";k.style.width=VZoomControl.RULER_ITEM_WIDTH+"px";k.style.height=VZoomControl.RULER_ITEM_TOP_HEIGHT+"px";k.style.top=(a*VZoomControl.RULER_ITEM_MIDDLE_HEIGHT)+"px"}else{if(d==0){k.src=VisicomCommons.API_URL+"/images/zoom/ruler-bottom.gif";k.style.width=VZoomControl.RULER_ITEM_WIDTH+"px";k.style.height=VZoomControl.RULER_ITEM_BOTTOM_HEIGHT+"px";k.style.top=(a*VZoomControl.RULER_ITEM_MIDDLE_HEIGHT)+"px"}else{k.src=VisicomCommons.API_URL+"/images/zoom/ruler-middle.gif";k.style.width=VZoomControl.RULER_ITEM_WIDTH+"px";k.style.height=VZoomControl.RULER_ITEM_MIDDLE_HEIGHT+"px";k.style.top=(a*VZoomControl.RULER_ITEM_MIDDLE_HEIGHT)+"px"}}}this._runner=document.createElement("div");var e=document.createElement("img");e.src=VisicomCommons.API_URL+"/images/zoom/runner.gif";e.style.border="0px";this._runner.appendChild(e);this._runner.style.position="absolute";this._runner.style.left="0px";this._runner.style.top="0px";this._runner.style.width=VZoomControl.RULER_ITEM_WIDTH+"px";this._runner.style.height=VZoomControl.RULER_ITEM_TOP_HEIGHT+"px";this._runner.style.border="0px";this._runner.style.cursor="pointer";this._ruler.appendChild(this._runner);var f=this;var j=false;function b(m){var l=VisicomUtils.getBounds(f._ruler);var i=Math.floor((m.clientY-l.top+VisicomUtils.getClientsTop())/VZoomControl.RULER_ITEM_MIDDLE_HEIGHT);i=h-i;return(i>h?h:(i<c?c:i))}this._ruler.onmousedown=function(m){if(!m){m=window.event}var i=b(m);var l=f._parent;if(i<c||i>h){l.zoom((i<c)?0:h);return}if(l.zoom()!=i){l.zoom(i)}j=true;if(m.stopPropagation){m.stopPropagation()}else{m.cancelBubble=true}if(m.preventDefault){m.preventDefault()}else{m.returnValue=false}};VisicomUtils.addHandler(document,"mouseup",function(m){if(!j){return}if(!m){m=window.event}var i=b(m);var l=f._parent;if(i<c||i>h){l.zoom((i<c)?0:h);return}if(l.zoom()!=i){l.zoom(i)}j=false});this._ruler.onmousemove=function(m){if(!j){return}if(!m){m=window.event}var i=b(m);var l=f._parent;if(i<c||i>h){l.zoom((i<c)?0:h);return}f.position(i);if(m.stopPropagation){m.stopPropagation()}else{m.cancelBubble=true}if(m.preventDefault){m.preventDefault()}else{m.returnValue=false}};this._div.appendChild(this._ruler)};VZoomControl.prototype._createDOMElement=function(){this._div=document.createElement("div");this._div.style.position="absolute";this._div.style.background="none";this._div.style.zIndex=VisicomCommons.ZINDEX_CONTROLS;this._div.style.padding="0px";this._div.style.margin="0px";this._div.style.border="0px";this._div.style.left=(this.options("left")?this.options("left"):10)+"px";this._div.style.top=(this.options("top")?this.options("top"):10)+"px";var d=this;this._zoom_in=document.createElement("div");var b=document.createElement("img");b.src=VisicomCommons.API_URL+"/images/zoom/zoom-in.gif";b.style.border="0px";this._zoom_in.appendChild(b);this._zoom_in.style.position="relative";this._zoom_in.style.width=VZoomControl.ZOOM_IN_WIDTH+"px";this._zoom_in.style.height=VZoomControl.ZOOM_IN_HEIGHT+"px";this._zoom_in.src=VisicomCommons.API_URL+"/images/zoom/zoom-in.gif";this._zoom_in.style.border="0px";this._zoom_in.style.cursor="pointer";var a=(this.options("max")!=null)?this.options("max"):this._parent._maps.length-1;var c=(this.options("min")!=null)?this.options("min"):0;this._zoom_in.onclick=function(h){var g=d._parent;var f=g.zoom()+1;if(f<c||f>a){return}d._parent.zoomIn()};this._div.appendChild(this._zoom_in);this._createRuler();if(this.options("ruler")==false){this._ruler.style.display="none";this._zoom_in.style.marginBottom="3px"}this._zoom_out=document.createElement("div");b=document.createElement("img");b.src=VisicomCommons.API_URL+"/images/zoom/zoom-out.gif";b.style.border="0px";this._zoom_out.appendChild(b);this._zoom_out.style.position="relative";this._zoom_out.style.width=VZoomControl.ZOOM_OUT_WIDTH+"px";this._zoom_out.style.height=VZoomControl.ZOOM_OUT_HEIGHT+"px";this._zoom_out.style.border="0px";this._zoom_out.style.cursor="pointer";this._zoom_out.onclick=function(h){var g=d._parent;var f=g.zoom()-1;if(f<c||f>a){return}d._parent.zoomOut()};this._div.appendChild(this._zoom_out);if(this.options("visible")!=false){this._parent._viewport.appendChild(this._div)}};VZoomControl.prototype.position=function(b){if(b==null){return this}if(this._runner==null){return this}var a=(this.options("max")!=null)?this.options("max"):this._parent._maps.length-1;var c=a-b;this._runner.style.top=(c*VZoomControl.RULER_ITEM_MIDDLE_HEIGHT)+"px";return this};VZoomControl.prototype.visible=function(b){if(b==null){return this._visible}try{if(b){this._parent._viewport.appendChild(this._div)}else{this._parent._viewport.removeChild(this._div)}}catch(a){}this._visible=b;return this};VZoomControl.prototype.options=function(a,b){if(arguments.length==0){return this._options}if(b==null){return this._options[a]}this._options[a]=b;switch(a){case"ruler":if(b){this._ruler.style.display="none"}else{this._ruler.style.display="block"}break}return this};VMarkerIcon.prototype._width=null;VMarkerIcon.prototype._height=null;VMarkerIcon.prototype._image_src=null;VMarkerIcon.prototype._alpha_enable=false;VMarkerIcon.prototype.width=function(){return this._width};VMarkerIcon.prototype.height=function(){return this._height};VMarkerIcon.prototype.source=function(){return this._image_src};function VMarkerIcon(d,a,c,b){this._width=d;this._height=a;this._image_src=c;if(b!=null){this._alpha_enable=b}return this}VMarkerIcon.prototype.alphaEnable=function(a){if(a==null){return this._alpha_enable}this._alpha_enable=a;return this};VMarkerIcon.MARKER_WIDTH=30;VMarkerIcon.MARKER_HEIGHT=28;var DEFAULT_MARKER_ICON=new VMarkerIcon(VMarkerIcon.MARKER_WIDTH,VMarkerIcon.MARKER_HEIGHT,VisicomCommons.API_URL+"images/markers/marker-red-ws.png");DEFAULT_MARKER_ICON.alphaEnable(true);VMarker.prototype=new VMapObject();VMarker.prototype.type="marker";VMarker.prototype._isGeo=true;VMarker.prototype._info=null;VMarker.prototype._hint=null;VMarker.prototype._icon=null;VMarker.prototype._mousedown=false;VMarker.prototype._mouse_coords=null;VMarker.prototype._move_delta=null;VMarker.prototype._moved=false;VMarker.prototype.draggable=function(a){if(arguments.length==0){return this.options("draggable")}this._options.draggable=a;return this};VMarker.prototype._pointer;VMarker.prototype.pointer=function(a){if(arguments.length==0){return(this._pointer==undefined)?{x:(this.icon().width()/2),y:this.icon().height()}:this._pointer}this._pointer=a;return this};function VMarker(a,b){VMapObject.call(this,a);if(typeof(b)=="string"){this.info(b);this._icon=DEFAULT_MARKER_ICON}else{this._icon=(b!=null)?b:DEFAULT_MARKER_ICON}this._mouse_coords={};this._bounds=new VRect(this._coords);return this}VMarker.prototype.info=function(){if(arguments.length==0){if(typeof(this._info)=="string"){this.info(this._info)}return this._info}if(this._info!=null&&typeof(this._info)!="string"){this._info._hide();this.remove(this._info)}var a={};if(arguments[0].type=="info"){this._info=arguments[0];a=this._info._options}else{if(arguments.length==3){if(typeof(arguments[2])!="string"){VisicomUtils.copy(arguments[2],a)}this._info=new VInfoWindow(this._coords[0],arguments[0],arguments[1],arguments[2])}else{if(arguments.length==2){if(typeof(arguments[1])!="string"){VisicomUtils.copy(arguments[1],a)}this._info=new VInfoWindow(this._coords[0],arguments[0],arguments[1])}else{this._info=new VInfoWindow(this._coords[0],arguments[0])}}}this.add(this._info);this._info.visible(false);if(a.alwaysOpen==null){this._info.options("alwaysOpen",false)}if(a.canClose==null){this._info.options("canClose",true)}this._info.__marker=this;return this};VMarker.prototype._pre_coords=function(a){if(a==null){return}if(this._info!=null&&typeof(this._info)!="string"){this._info.coords(a)}};VMarker.prototype._createDOMElement=function(){this._div=document.createElement("img");if(this._icon==null){var a=this.style("icon");if(a==null){this._icon=DEFAULT_MARKER_ICON}else{this._icon=new VMarkerIcon(24,24,a)}}this._div.id="marker_"+this.coords(0).lng+this.coords(0).lat;this._div.style.position="absolute";this._div.width=this._icon.width();this._div.height=this._icon.height();this._div.style.zIndex=VisicomCommons.ZINDEX_MARKERS;this._div.style.border="0px";if(USER_DATA.Browser.MSIE){this._div.src=VisicomCommons.API_URL+"/images/blank.gif";this._div.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+this._icon.source()+"')"}else{this._div.src=this._icon.source()}this._div.style.cursor="pointer";var b=this;this._div.onmouseout=function(c){b._onMouseOut(c)};this._div.onclick=function(c){b._onMouseClick(c)};this._div.onmousedown=function(c){b._onMouseDown(c)};this._div.onmouseup=function(c){b._onMouseUp(c)};this._div.ondblclick=function(f){var c=0;if(f==undefined){f=window.event;c=window.event.button}else{c=f.which}var d=b._getMap();if(d==null){return}b._mouseEvent("mousedblclick",null,d._getCoords(f.clientX,f.clientY),(c==1)?"left":"right")};this._div.onmouseover=function(d){if(!d){d=window.event}b.mouseover();b._div.style.zIndex=VisicomCommons.ZINDEX_MARKERS_HOVER;if(b._mousedown){return}var c=b._getMap();if(c==null){return}if(c._dragged_object==b){b._hideHint();return}b._showHint()}};VMarker.prototype._onMouseDown=function(f){var b=0;if(f==undefined){f=window.event;b=window.event.button}else{b=f.which}var d=this._getMap();if(d==null){return}this._moved=false;this._mouseEvent("mousedown",null,d._getCoords(f.clientX,f.clientY),(b==1)?"left":"right");if(this.options("draggable")){this._mouse_coords={x:f.clientX,y:f.clientY};var c=d._getCoords(f.clientX,f.clientY);var a=d._convertToScreenCoords(c);var g=d._convertToScreenCoords(this.coords(0));this._move_delta={dx:g.x-a.x,dy:g.y-a.y};d._dragged_object=this;if(this.info()!=null){this.info()._hide();this.info().visible(false)}this._hideHint();this._div.style.zIndex=VisicomCommons.ZINDEX_MARKERS_HOVER;this.startdrag()}if(f.stopPropagation){f.stopPropagation()}else{f.cancelBubble=true}if(f.preventDefault){f.preventDefault()}else{f.returnValue=false}};VMarker.prototype._onMouseUp=function(b){if(!b){b=window.event}if(!this._moved){this.mouseup()}var a=this._getMap();if(a==null){return}a._mouse_over=true;a._dragged_object=null;if(!this.options("draggable")){if(b.stopPropagation){b.stopPropagation()}else{b.cancelBubble=true}if(b.preventDefault){b.preventDefault()}else{b.returnValue=false}return}if(this._moved){this._repaint();this.mouseup();this.enddrag()}if(b.stopPropagation){b.stopPropagation()}else{b.cancelBubble=true}if(b.preventDefault){b.preventDefault()}else{b.returnValue=false}};VMarker.prototype._onMouseClick=function(c){var a=0;if(c==undefined){c=window.event;a=window.event.button}else{a=c.which}var b=this._getMap();if(b==null){return}if(!this._moved){this._mouseEvent("mouseclick",null,b._getCoords(c.clientX,c.clientY),(a==1)?"left":"right")}if(this.info()==null){return}VInfoWindow._changeWindow();if(!this._moved){this.info().coords(this.coords());this.info().visible(true);if(this.info().options("scrollOnOpen")!=false){this.info()._smoothOpen()}this._hideHint()}b.repaint();if(c.stopPropagation){c.stopPropagation()}else{c.cancelBubble=true}if(c.preventDefault){c.preventDefault()}else{c.returnValue=false}};VMarker.prototype._onMouseOut=function(b){if(!b){b=window.event}this._div.style.zIndex=VisicomCommons.ZINDEX_MARKERS;this._hideHint();this.mouseout();var a=this._getMap();if(!a._isMouseOnViewport(b.clientX,b.clientY)&&a._dragged_object==this){this._onMouseUp(b)}if(b.stopPropagation){b.stopPropagation()}else{b.cancelBubble=true}if(b.preventDefault){b.preventDefault()}else{b.returnValue=false}};VMarker.prototype._pre_init=function(){this._bounds=new VRect(this._coords)};VMarker.prototype._pre_show=function(){if(this._div==null){this._createDOMElement()}var b=this._getMap();if(b==null){return}var a=b._convertToScreenCoords(this.coords(0));this._left=Math.round(a.x-this.pointer().x);this._top=Math.round(a.y-this.pointer().y)};VMarker.prototype._pre_hide=function(){if(this.info()!=null&&this.info().visible()){this.info()._hide()}};VMarker.prototype._showHint=function(){if(this.info()!=null&&this.info().visible()&&this.info().displayed()){return}if(this.hint()==null){return}if(this.hint().visible()){return}VMarker._closeCurrentHint();this.hint().coords(this.coords());this.hint().visible(true);this.hint()._show();this.hint()._repaint();VMarker.CURRENT_HINT=this.hint()};VMarker.prototype._hideHint=function(){if(this.hint()==null){return}if(!this.hint().visible()){return}this.hint().visible(false);this.hint()._hide()};VMarker.prototype.visible=function(a){if(arguments.length==0){return this._visible}if(this._visible==a){return this}this._visible=a;if(this.info()!=null){this.info().visible(false)}if(this.hint()!=null){this.hint().visible(false)}return null};VMarker.prototype.hint=function(a){if(arguments.length==0){if(typeof(this._hint)=="string"){this.hint(this._hint)}return this._hint}if(this._hint!=null){this.remove(this._hint)}this._hint=new VLabel(this.coords(),a);this._hint.visible(false);this._hint.move(0,-this.pointer().y);this.add(this._hint);return this};VMarker.prototype.icon=function(a){if(this._icon==null){this._icon=(a!=null)?a:DEFAULT_MARKER_ICON}if(arguments.length==0){return this._icon}this._icon=a;if(this._div==null){this._createDOMElement()}this._div.width=this._icon.width();this._div.height=this._icon.height();if(this.hint()!=null){this.hint().move(0,-this.pointer().y)}if(USER_DATA.Browser.MSIE){this._div.src=VisicomCommons.API_URL+"/images/blank.gif";this._div.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+this._icon.source()+"')"}else{this._div.src=this._icon.source()}this._hide();this._show();return this};VMarker._closeCurrentHint=function(){if(VMarker.CURRENT_HINT==null){return}VMarker.CURRENT_HINT.visible(false)};VInfoWindow.prototype=new VMapObject();VInfoWindow.prototype.type="info";VInfoWindow.prototype._isGeo=true;VInfoWindow.CURRENT_WINDOW;VInfoWindow.FORM_OLDSTYLE='<div>    <!-- top left -->    <div style="position: absolute; left: 13px; top: 0px; width: 15px; height: 15px;"><img src="'+VisicomCommons.API_URL+'/images/info_old/top_left.png" width="15" height="15" /></div>    <!-- arrow -->    <div style="position: absolute; left: 1px; top: 15px; width: 13px; height: 61px;"><img src="'+VisicomCommons.API_URL+'/images/info_old/arrow.png" width="13" height="61" /></div>    <!-- left border -->    <div style="position: absolute; left: 13px; top: 76px; width: 15px; height: #height#px;"><img src="'+VisicomCommons.API_URL+'/images/info_old/left.png" width="15" height="#height#" /></div>    <!-- bottom left -->    <div style="position: absolute; left: 13px; top: #height+76#px; width: 15px; height: 30px;"><img src="'+VisicomCommons.API_URL+'/images/info_old/bottom_left.png" width="15" height="30" /></div>    <div style="position: absolute; left: 14px; top: 15px; width: 15px; height: 61px; background-color: white;"></div>    <!-- background -->    <div style="position: absolute; left: 28px; top: 15px; width: #width#px; height: #height+61#px; background-color: white;"><div style="padding: 3px;">#html#</div></div>    <!-- top border -->    <div style="position: absolute; left: 28px; top: 0px; width: #width#px; height: 15px;"><img src="'+VisicomCommons.API_URL+'/images/info_old/top.png" width="#width#" height="15" /></div>    <!-- bottom border -->    <div style="position: absolute; left: 28px; top: #height+76#px; width: #width#px; height: 30px;"><img src="'+VisicomCommons.API_URL+'/images/info_old/bottom.png" width="#width#" height="30" /></div>    <!-- top right -->    <div style="position: absolute; left: #width+28#px; top: 0px; width: 30px; height: 15px;"><img src="'+VisicomCommons.API_URL+'/images/info_old/top_right.png" width="30" height="15" /></div>    <!-- right border -->    <div style="position: absolute; left: #width+28#px; top: 15px; width: 30px; height: #height+61#px;"><img src="'+VisicomCommons.API_URL+'/images/info_old/right.png" width="30" height="#height+61#" /></div>    <!-- bottom right -->    <div style="position: absolute; left: #width+28#px; top: #height+76#px; width: 30px; height: 30px;"><img src="'+VisicomCommons.API_URL+'/images/info_old/bottom_right.png" width="30" height="30" /></div></div>';VInfoWindow.FORM_OLDSTYLE_IE='<div>    <!-- top left -->    <div style="position: absolute; left: 13px; top: 0px; width: 15px; height: 15px;"><img style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+VisicomCommons.API_URL+'/images/info_old/top_left.png\');" src="'+VisicomCommons.API_URL+'/images/blank.gif" width="15" height="15" /></div>    <!-- arrow -->    <div style="position: absolute; left: 1px; top: 15px; width: 13px; height: 61px;"><img style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+VisicomCommons.API_URL+'/images/info_old/arrow.png\');" src="'+VisicomCommons.API_URL+'/images/blank.gif" width="13" height="61" /></div>    <!-- left border -->    <div style="position: absolute; left: 13px; top: 76px; width: 15px; height: #height-76#px;"><img style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+VisicomCommons.API_URL+"/images/info_old/left.png', sizingMethod='scale');\" src=\""+VisicomCommons.API_URL+'/images/blank.gif" width="15" height="#height-76#" /></div>    <!-- bottom left -->    <div style="position: absolute; left: 13px; top: #height+76#px; width: 15px; height: 30px;"><img style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+VisicomCommons.API_URL+'/images/info_old/bottom_left.png\');" src="'+VisicomCommons.API_URL+'/images/blank.gif" width="15" height="30" /></div>    <div style="position: absolute; left: 14px; top: 15px; width: 15px; height: 61px; background-color: white;"></div>    <!-- background -->    <div style="position: absolute; left: 28px; top: 15px; width: #width#px; height: #height+62#px; background-color: white;"><div style="padding: 3px;">#html#</div></div>    <!-- top border -->    <div style="position: absolute; left: 28px; top: 0px; width: #width#px; height: 15px;"><img style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+VisicomCommons.API_URL+"/images/info_old/top.png', sizingMethod='scale');\" src=\""+VisicomCommons.API_URL+'/images/blank.gif" width="#width#" height="15" /></div>    <!-- bottom border -->    <div style="position: absolute; left: 28px; top: #height+76#px; width: 300px; height: 30px;"><img style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+VisicomCommons.API_URL+"/images/info_old/bottom.png', sizingMethod='scale');\" src=\""+VisicomCommons.API_URL+'/images/blank.gif" width="#width#" height="30" /></div>    <!-- top right -->    <div style="position: absolute; left: #width+28#px; top: 0px; width: 30px; height: 15px;"><img style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+VisicomCommons.API_URL+'/images/info_old/top_right.png\');" src="'+VisicomCommons.API_URL+'/images/blank.gif" width="30" height="15" /></div>    <!-- right border -->    <div style="position: absolute; left: #width+28#px; top: 15px; width: 30px; height: #height-61#px;"><img style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+VisicomCommons.API_URL+"/images/info_old/right.png', sizingMethod='scale');\" src=\""+VisicomCommons.API_URL+'/images/blank.gif" width="30" height="#height+61#" /></div>    <!-- bottom right -->    <div style="position: absolute; left: #width+28#px; top: #height+76#px; width: 30px; height: 30px;"><img style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+VisicomCommons.API_URL+'/images/info_old/bottom_right.png\');" src="'+VisicomCommons.API_URL+'/images/blank.gif" width="30" height="30" /></div></div>';VInfoWindow.FORM_IE='<div>    <div style="position: absolute; left: 0px; top: 0px; width: 9px; height: 9px;"><img style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+VisicomCommons.API_URL+"/images/info/corner-left-top.png', sizingMethod='scale');\" src=\""+VisicomCommons.API_URL+'/images/blank.gif" width="9" height="9" /></div>    <div style="position: absolute; left: 9px; top: 0px; width: #width#px; height: 9px;"><img style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+VisicomCommons.API_URL+"/images/info/border-top.png', sizingMethod='scale');\" src=\""+VisicomCommons.API_URL+'/images/blank.gif" width="#width#" height="9" /></div>    <div style="position: absolute; left: #width+9#px; top: 0px; width: 9px; height: 9px;"><img style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+VisicomCommons.API_URL+"/images/info/corner-right-top.png', sizingMethod='scale');\" src=\""+VisicomCommons.API_URL+'/images/blank.gif" width="9" height="9" /></div>    <div style="position: absolute; left: 0px; top: 9px; width: 9px; height: #height#px;"><img style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+VisicomCommons.API_URL+"/images/info/border-left.png', sizingMethod='scale');\" src=\""+VisicomCommons.API_URL+'/images/blank.gif" width="9" height="#height#" /></div>    <div style="position: absolute; left: 9px; top: 9px; width: #width#px; height: #height#px; background-color: white; font-size: 1px;"><div style="padding: 3px;">#html#</div></div>    <div style="position: absolute; left: #width+9#px; top: 9px; width: 9px; height: 120px;"><img style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+VisicomCommons.API_URL+"/images/info/border-right.png', sizingMethod='scale');\" src=\""+VisicomCommons.API_URL+'/images/blank.gif" width="9" height="#height#" /></div>    <div style="position: absolute; left: 0px; top: #height+9#px; width: 9px; height: 15px;"><img style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+VisicomCommons.API_URL+"/images/info/corner-left-bottom.png', sizingMethod='scale');\" src=\""+VisicomCommons.API_URL+'/images/blank.gif" width="9" height="15" /></div>    <div style="position: absolute; left: 9px; top: #height+9#px; width: 33px; height: 15px;"><img style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+VisicomCommons.API_URL+"/images/info/pointer.png', sizingMethod='scale');\" src=\""+VisicomCommons.API_URL+'/images/blank.gif" width="33" height="15" /></div>    <div style="position: absolute; left: 42px; top: #height+9#px; width: #width-33#px; height: 15px;"><img src="'+VisicomCommons.API_URL+'/images/blank.gif" style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+VisicomCommons.API_URL+'/images/info/border-bottom.png\', sizingMethod=\'scale\');" width="#width-33#" height="15" /></div>    <div style="position: absolute; left: #width+9#px; top: #height+9#px; width: 9px; height: 15px;"><img style="filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+VisicomCommons.API_URL+"/images/info/corner-right-bottom.png', sizingMethod='scale');\" src=\""+VisicomCommons.API_URL+'/images/blank.gif" width="9" height="15" /></div></div>';VInfoWindow.FORM='<div>    <div style="position: absolute; left: 0px; top: 0px; width: 9px; height: 9px;">        <img src="'+VisicomCommons.API_URL+'/images/info/corner-left-top.png" width="9" height="9" />    </div>    <div style="position: absolute; left: 9px; top: 0px; width: #width#px; height: 9px;">        <img src="'+VisicomCommons.API_URL+'/images/info/border-top.png" width="#width#" height="9" />    </div>    <div style="position: absolute; left: #width+9#px; top: 0px; width: 9px; height: 9px;">        <img src="'+VisicomCommons.API_URL+'/images/info/corner-right-top.png" width="9" height="9" />    </div>    <div style="position: absolute; left: 0px; top: 9px; width: 9px; height: #height#px;">        <img src="'+VisicomCommons.API_URL+'/images/info/border-left.png" width="9" height="#height#" />    </div>    <div style="position: absolute; left: 9px; top: 9px; width: #width#px; height: #height#px; background-color: white;"><div style="padding: 3px;">#html#</div></div>    <div style="position: absolute; left: #width+9#px; top: 9px; width: 9px; height: #height#px;">        <img src="'+VisicomCommons.API_URL+'/images/info/border-right.png" width="9" height="#height#" />    </div>    <div style="position: absolute; left: 0px; top: #height+9#px; width: 9px; height: 15px;">        <img src="'+VisicomCommons.API_URL+'/images/info/corner-left-bottom.png" width="9" height="15" />    </div>    <div style="position: absolute; left: 9px; top: #height+9#px; width: 33px; height: 15px;">        <img src="'+VisicomCommons.API_URL+'/images/info/pointer.png" width="33" height="15" />    </div>    <div style="position: absolute; left: 42px; top: #height+9#px; width: #width-33#px; height: 15px;">        <img src="'+VisicomCommons.API_URL+'/images/info/border-bottom.png" width="#width-33#" height="15" />    </div>    <div style="position: absolute; left: #width+9#px; top: #height+9#px; width: 9px; height: 15px;">        <img src="'+VisicomCommons.API_URL+'/images/info/corner-right-bottom.png" width="9" height="15" />    </div></div>';VInfoWindow.prototype._header="";VInfoWindow.prototype._text="";VInfoWindow.prototype._alwaysOpen=function(a){if(arguments.length==0){return this.options("alwaysOpen")}this._options.alwaysOpen=a;var b=this._getMap();if(b==null){return(this)}if(this._options.alwaysOpen&&VInfoWindow.CURRENT_WINDOW==this){VInfoWindow._changeWindow();b.repaint()}return this};VInfoWindow.prototype.scrollOnOpen=function(a){if(arguments.length==0){return this.options("scrollOnOpen")}this._options.scrollOnOpen=a;return this};VInfoWindow.prototype.canClose=function(a){if(arguments.length==0){return this.options("canClose")}this._options.canClose=a;return this};function VInfoWindow(){if(arguments.length==0){return this}if(typeof(arguments[0])!="string"){if(typeof(arguments[2])=="string"){this._header=arguments[1];this._text=arguments[2];VMapObject.call(this,arguments[0],arguments[3])}else{this._html=arguments[1];this._header=arguments[1];this._text=arguments[2];VMapObject.call(this,arguments[0],arguments[2])}}else{if(typeof(arguments[1])=="string"){this._header=arguments[0];this._text=arguments[1];VMapObject.call(this,null,arguments[2])}else{this._html=arguments[0];this._header=arguments[0];this._text=arguments[0];VMapObject.call(this,null,arguments[1])}}if(this.options("alwaysOpen")==null){this.options("alwaysOpen",true)}if(this.options("canClose")==null){this.options("canClose",true)}return this}VInfoWindow.prototype._createDOMElement=function(){if(this._div==null){if(this._options.width==null){this._options.width=300}if(this._options.height==null){this._options.height=120}this._div=document.createElement("div");this._div.id="info_window_";this._div.style.position="absolute";this._div.style.zIndex=VisicomCommons.ZINDEX_INFOWINDOW;this._div.style.cursor="default";this._div.style.padding="0px";this._div.style.border="0px";var c="";var b="";if(this._html==null){var f="<div style='color: #303030; font: bold 12px Tahoma; padding: 2px; width: "+(this._options.width-10)+"px; height: 14px; background-color: #E9EEF7;'>"+this._header+"</div>";var d="<div style='color: #303030; font: normal 11px Tahoma; margin-top: 3px; max-height: "+(this._options.height-6)+"px; width: "+(this._options.width-9)+"px; height: "+(this._options.height-6-20-8)+"px; padding: 3px; overflow: auto;'>"+this._text+"</div>";b=f+d}else{b="<div style='color: #303030; font: normal 11px Arial, Helvetica, sans-serif; max-height: "+(this._options.height-6)+"px; height: "+(this._options.height-6)+"px; overflow: auto;'>"+this._html+"</div>"}if(this._options.style=="1.0.0"){if(USER_DATA.Browser.MSIE){c=VInfoWindow.FORM_OLDSTYLE_IE}else{c=VInfoWindow.FORM_OLDSTYLE}c=c.replace(/\#header\#/,this._header);c=c.replace(/\#html\#/,b);c=c.replace(/\#width\#/g,this._options.width);c=c.replace(/\#width\+28\#/g,this._options.width+28);c=c.replace(/\#height\#/g,this._options.height);c=c.replace(/\#height\+76\#/g,this._options.height+76);c=c.replace(/\#height\-76\#/g,this._options.height-76);c=c.replace(/\#height\+61\#/g,this._options.height+61);c=c.replace(/\#height\-61\#/g,this._options.height-61);c=c.replace(/\#height\+62\#/g,this._options.height+62);this._div.innerHTML=c;if(this.options("canClose")){var a=document.createElement("img");a.style.height="12px";a.style.width="12px";if(USER_DATA.Browser.MSIE){a.style.height="1px";a.style.width="1px";a.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+VisicomCommons.API_URL+"images/info_old/button_close.png')"}else{a.style.height="12px";a.style.width="12px";a.src=VisicomCommons.API_URL+"images/info_old/button_close.png"}a.style.position="absolute";a.style.left=(this._options.width+24)+"px";a.style.top="8px";a.style.zIndex=VisicomCommons.ZINDEX_INFOWINDOW;a.style.cursor="pointer";this._div.appendChild(a);var e=this;a.onmouseover=function(){if(USER_DATA.Browser.MSIE){a.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+VisicomCommons.API_URL+"images/info_old/button_close_hover.png')"}else{a.src=VisicomCommons.API_URL+"images/info_old/button_close_hover.png"}};a.onmouseout=function(){if(USER_DATA.Browser.MSIE){a.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+VisicomCommons.API_URL+"images/info_old/button_close.png')"}else{a.src=VisicomCommons.API_URL+"images/info_old/button_close.png"}};a.onclick=function(){e.visible(false);e._hide();if(USER_DATA.Browser.MSIE){a.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+VisicomCommons.API_URL+"images/info_old/button_close.png')"}else{a.src=VisicomCommons.API_URL+"images/info_old/button_close.png"}}}}else{if(USER_DATA.Browser.MSIE){c=VInfoWindow.FORM_IE}else{c=VInfoWindow.FORM}c=c.replace(/\#header\#/,this._header);c=c.replace(/\#html\#/,b);c=c.replace(/\#width\#/g,this._options.width);c=c.replace(/\#width\+9\#/g,this._options.width+9);c=c.replace(/\#width\-33\#/g,this._options.width-33);c=c.replace(/\#height\#/g,this._options.height);c=c.replace(/\#height\+9\#/g,this._options.height+9);this._div.innerHTML=c;if(this.options("canClose")){a=document.createElement("img");a.style.height="15px";a.style.width="15px";if(USER_DATA.Browser.MSIE){a.style.height="1px";a.style.width="1px";a.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+VisicomCommons.API_URL+"images/info/close.png')"}else{a.style.height="15px";a.style.width="15px";a.src=VisicomCommons.API_URL+"images/info/close.png"}a.style.position="absolute";a.style.left=(this._options.width-11)+"px";a.style.top="13px";a.style.zIndex=VisicomCommons.ZINDEX_INFOWINDOW;a.style.cursor="pointer";this._div.appendChild(a);var e=this;a.onmouseover=function(){if(USER_DATA.Browser.MSIE){a.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+VisicomCommons.API_URL+"images/info/close_hover.png')"}else{a.src=VisicomCommons.API_URL+"images/info/close_hover.png"}};a.onmouseout=function(){if(USER_DATA.Browser.MSIE){a.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+VisicomCommons.API_URL+"images/info/close.png')"}else{a.src=VisicomCommons.API_URL+"images/info/close.png"}};a.onclick=function(){e.visible(false);e._hide();if(USER_DATA.Browser.MSIE){a.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+VisicomCommons.API_URL+"images/info/close.png')"}else{a.src=VisicomCommons.API_URL+"images/info/close.png"}}}}var e=this;this._div.onmouseover=function(h){if(!h){h=window.event}e._div.style.zIndex=VisicomCommons.ZINDEX_INFOWINDOW_HOVER;var g=e._getMap();if(g!=null){g._mouse_over=false}if(h.stopPropagation){h.stopPropagation()}else{h.cancelBubble=true}if(h.preventDefault){h.preventDefault()}else{h.returnValue=false}};this._div.onmouseout=function(g){if(!g){g=window.event}e._div.style.zIndex=VisicomCommons.ZINDEX_INFOWINDOW;if(g.stopPropagation){g.stopPropagation()}else{g.cancelBubble=true}if(g.preventDefault){g.preventDefault()}else{g.returnValue=false}};this._div.onmouseup=function(g){if(!g){g=window.event}if(g.stopPropagation){g.stopPropagation()}else{g.cancelBubble=true}if(g.preventDefault){g.preventDefault()}else{g.returnValue=false}}}};VInfoWindow.prototype._pre_init=function(){this._bounds=new VRect(this._coords)};VInfoWindow.prototype._pre_show=function(){if(this._div==null){this._createDOMElement()}var c=this._getMap();if(c==null){return}var b=c._convertToScreenCoords(this.coords(0));if(this._options.style=="1.0.0"){this._left=b.x;this._top=b.y-48}else{this._left=b.x-32;this._top=b.y-this._options.height-23}if(!this.options("alwaysOpen")){VInfoWindow._changeWindow(this)}if(this.__marker==null){return}this.__marker._hideHint();var a=this.__marker.getDOMElement();if(a==null){return}a.style.display="none"};VInfoWindow.prototype._pre_hide=function(){var b=this._getMap();if(b==null){return}this._event("close");if(this.__marker==null){return}var a=this.__marker.getDOMElement();if(a==null){return}if(!this.__marker.visible()){return}a.style.display="block"};VInfoWindow.prototype.size=function(b,a){if(a==null){switch(b){case"small":this._options.width=190;this._options.height=55;break;case"medium":this._options.width=290;this._options.height=141;break;case"large":this._options.width=490;this._options.height=302;break}return}this._options.width=b;this._options.height=a;if(this._options.width>800){this._options.width=800}if(this._options.height>600){this._options.height=600}};VInfoWindow._changeWindow=function(){if(VInfoWindow.CURRENT_WINDOW!=null){if(arguments.length>0){if(VInfoWindow.CURRENT_WINDOW!=arguments[0]){VInfoWindow.CURRENT_WINDOW._hide();VInfoWindow.CURRENT_WINDOW.visible(false)}}else{VInfoWindow.CURRENT_WINDOW._hide();VInfoWindow.CURRENT_WINDOW.visible(false)}}if(arguments.length>0){VInfoWindow.CURRENT_WINDOW=arguments[0]}else{VInfoWindow.CURRENT_WINDOW=null}};VInfoWindow.prototype._smoothOpen=function(){var a=this._getMap();if(a==null){return}if(this._div==null){this._createDOMElement()}var j=a._convertToScreenCoords(this.coords(0));var l;var k;if(this._options.style=="1.0.0"){l=j.x;k=j.y-48}else{l=j.x-32;k=j.y-this.options("height")-23}var g=10;var d=g*2;l-=g;k-=g;var h=a._convertToGeoCoords(l-g,k-g);var c=a._convertToGeoCoords(l+this.options("width")+d,k);var f=a._convertToGeoCoords(l+this.options("width")+d,k+this.options("height")+d);var b=a._convertToGeoCoords(l,k+this.options("height")+d);var i=a.clientRect();if(i.contains(h)&&i.contains(c)&&i.contains(f)&&i.contains(b)){return}a._clearSmoothTimer();var e={lng:b.lng+((c.lng-b.lng)/2),lat:b.lat+((c.lat-b.lat)/2)};a._smoothMove(e,function(){var m=a.clientRect();return!((m.contains(h)&&m.contains(c)&&m.contains(f)&&m.contains(b)))})};VLabel.prototype=new VMapObject();VLabel.prototype._isGeo=true;VLabel.prototype._html;VLabel.prototype._offset;function VLabel(b,a){VMapObject.call(this,b);this._html=(a!=null)?a:"";this.type="label";return this}VLabel.prototype.html=function(a){if(arguments.length==0){return this._html}this._html=a;if(this._div!=null){this._div.innerHTML="<nobr>"+this._html+"</nobr>";this._div.style.display=(this._html!="")?"block":"none"}return this};VLabel.prototype._createDOMElement=function(){this._div=document.createElement("div");this._div.style.position="absolute";this._div.style.zIndex=VisicomCommons.ZINDEX_LABEL;this._div.style.cursor="default";this._div.style.font="normal 11px Arial";this._div.style.color="#000000";this._div.style.padding="2px";this._div.style.border="1px solid gray";this._div.style.backgroundColor="#FFFFE1";this._div.innerHTML="<nobr>"+this._html+"</nobr>";var a=this;this._div.onmousedown=function(b){if(!b){b=window.event}a.mousedown();if(b.stopPropagation){b.stopPropagation()}else{b.cancelBubble=true}if(b.preventDefault){b.preventDefault()}else{b.returnValue=false}};this._div.onmouseup=function(b){if(!b){b=window.event}a.mouseup();if(b.stopPropagation){b.stopPropagation()}else{b.cancelBubble=true}if(b.preventDefault){b.preventDefault()}else{b.returnValue=false}};this._div.onmousemove=function(b){if(!b){b=window.event}a.mousemove()};this._div.onclick=function(b){if(!b){b=window.event}a.mouseclick();if(b.stopPropagation){b.stopPropagation()}else{b.cancelBubble=true}if(b.preventDefault){b.preventDefault()}else{b.returnValue=false}};this._div.onmouseover=function(b){if(!b){b=window.event}if(b.stopPropagation){b.stopPropagation()}else{b.cancelBubble=true}if(b.preventDefault){b.preventDefault()}else{b.returnValue=false}}};VLabel.prototype._pre_init=function(){this._bounds=new VRect(this.coords())};VLabel.prototype._pre_show=function(){if(this._div==null){this._createDOMElement()}var b=this._getMap();if(b==null){return}this._div.style.display=(this._html!="")?"block":"none";var a=b._convertToScreenCoords(this.coords(0));this._left=Math.round(a.x);this._top=Math.round(a.y)};VLabel.prototype._pre_repaint=function(){var b=this._getMap();if(b==null){return}var a=b._convertToScreenCoords(this.coords(0));this._left=Math.round(a.x);this._top=Math.round(a.y);this._top-=VisicomUtils.getBounds(this._div).height;if(this._offset==null){return}this._left+=this._offset.x;this._top+=this._offset.y};VLabel.prototype.move=function(a,b){this._offset={x:a,y:b};return this};VLine.prototype=new VMapObject();VLine.prototype.type="line";VLine.prototype._isGeo=true;VLine.prototype.color=function(a){if(arguments.length==0){return this.style("color")}this._style.color=a;var b=this;this._childs.forEach(function(c){c.color(b._style.color);c._re_create()});this._re_create();return this};VLine.prototype.lineWidth=function(a){if(arguments.length==0){return this.style("lineWidth")}this._style.lineWidth=a;var b=this;this._childs.forEach(function(c){c.lineWidth(b._style.lineWidth);c._re_create()});this._re_create();return this};VLine.prototype.opacity=function(a){if(arguments.length==0){return this.style("opacity")}this._style.opacity=a;var b=this;this._childs.forEach(function(c){c.opacity(b._style.opacity);c._re_create()});this._re_create();return this};VLine.prototype._screen_coords=null;function VLine(a){VMapObject.call(this,a);return this}VLine.prototype._pre_init=function(){var b=this._getMap();if(b==null){return}if(this._div!=null){this._hide()}var m=this;this._childs.forEach(function(i){i._remove()});this._childs=[];this._displayed=false;if(this._coords==null){return}var r=3500;var l=3500;var g=500;var d=function(s){var i=[];s.forEach(function(t){var u=b._convertToScreenCoords(t);i.push({x:u.x-a.x+m.lineWidth(),y:m._height-(a.y-u.y)+m.lineWidth()})});return i};var k=function(w){var v=new VRect(w);var u=b._convertToScreenCoords(v.leftBottom());var s=b._convertToScreenCoords(v.rightTop());var t=(s.x-u.x);var i=(u.y-s.y);return(!(t>r||i>l))};var q=function(E){var z=E[0];var v=E[1];var G=(v.lng-z.lng);var F=(v.lat-z.lat);var D=Math.sqrt(Math.pow(G,2)+Math.pow(F,2));var u=G/D;var A=F/D;var i=[];var s=b._currentMap._units_per_pixel;var B=((r-g)*s)*u;var w=((l-g)*s)*A;var t=VisicomCommons.convertToGeoProjection(B,w);var C={lng:z.lng+t.lng/2,lat:z.lat+t.lat/2};i.push(z);i.push(C);i.push(v);return i};var f=[];var e=0;c=k(this._coords);if(!c){for(var j=0;j<this._coords.length;j++){e++;var p=this._coords[j];f.push(p);var c=false;while(!c){c=k(f);if(c){break}if(f.length==2){f=q(f);var o=f[1];f.splice(2,1);var n=new VLine(f);n.visible(this._visible);this.add(n);n._init()}else{f.splice(e-1,1);o=f[e-2];n=new VLine(f);n.visible(this._visible);this.add(n);n._init()}f=[];f.push(o);f.push(p);e=2}}}else{f=this._coords}this._bounds=new VRect(f);var a=b._convertToScreenCoords(this._bounds.leftBottom());var h=b._convertToScreenCoords(this._bounds.rightTop());this._left=a.x-this.lineWidth();this._top=a.y-this.lineWidth();this._width=Math.abs(h.x-a.x);this._height=a.y-h.y;this._screen_coords=d(f);this._top-=this._height;this._width+=this.lineWidth()*2;this._height+=this.lineWidth()*2};VLine.prototype._pre_show=function(){if(this._div!=null){return}if(this._screen_coords==null){return}if(this._screen_coords.length==0){return}var e=this.lineWidth();if(e==null){e=2}var f=this.opacity();if(f==null){f=1}var c=this.color();if(c==null){c="#00ffff"}if(USER_DATA.Browser.MSIE){this._div=document.createElement("div");this._div.id="polyline_"+this._left+"_"+this._top;this._div.style.position="absolute";this._div.style.width=Math.round(this._width)+"px";this._div.style.height=Math.round(this._height)+"px";this._div.style.zIndex=VisicomCommons.ZINDEX_POLYLINE;this._div.style.border="none";var k=document.createElement("v:polyline");k.style.left="0px";k.style.top="0px";k.style.position="absolute";k.style.antialias="true";var h=document.createElement("v:stroke");if(f!=null){h.setAttribute("opacity",f)}h.setAttribute("joinstyle","round");h.setAttribute("filltype","solid");k.appendChild(h);k.setAttribute("strokecolor",((c==null)?"#0000C8":c));k.setAttribute("strokeweight",e+"px");k.setAttribute("filled","false");var g="";for(var d=0;d<this._screen_coords.length;d++){var j=this._screen_coords[d];g+=j.x+","+j.y+" "}k.setAttribute("points",g);k.setAttribute("opacity",f);this._div.appendChild(k)}else{this._div=document.createElement("canvas");this._div.id="polyline_"+this._left+"_"+this._top;this._div.style.position="absolute";this._div.width=Math.round(this._width);this._div.height=Math.round(this._height);this._div.style.zIndex=VisicomCommons.ZINDEX_POLYLINE;this._div.style.border="none";var a;try{a=this._div.getContext("2d")}catch(b){return}a.lineWidth=e;a.lineCap="round";a.lineJoin="round";a.strokeStyle=(c==null)?"rgb(0, 0, 200)":c;if(f!=null){a.globalAlpha=f}a.beginPath();for(d=0;d<this._screen_coords.length;d++){j=this._screen_coords[d];if(d==0){a.moveTo(j.x,j.y)}else{a.lineTo(j.x,j.y)}}a.stroke()}};VLine.prototype.distance=function(){return VisicomCommons.GeoCalcLen(this.coords())};VMultiLine.prototype=new VLine();VMultiLine.prototype.type="multiline";function VMultiLine(a){VLine.call(this,a);return this}VMultiLine.prototype.bounds=function(){if(this._bounds==null){this._createLines()}return this._bounds};VMultiLine.prototype._createLines=function(){if(this._childs.length!=0){return}this._childs=[];var a=[];for(var b=0;b<this._coords.length;b++){var c=this._coords[b];if(c.length==null){this.add(new VLine(this._coords));a=this._coords;break}this.add(new VLine(c));var d=new VRect(c);a.push(d.leftBottom());a.push(d.rightTop())}this._bounds=new VRect(a)};VMultiLine.prototype._pre_init=function(){this._createLines()};VMultiLine.prototype.distance=function(){if(this._childs.length==0){this._createLines()}var c=0;for(var b in this._childs){var a=this._childs[b];c+=a.distance()}return c};VArea.prototype=new VLine();function VArea(a){VLine.call(this,a);this.type="area";return this}VArea.prototype._pre_show=function(){if(this._screen_coords==null){return}if(this._screen_coords.length==0){return}var f=this.lineWidth();if(f==null){f=3}var g=this.opacity();if(g==null){g=0.35}var d=this.color();if(d==null){d="#0000ff"}if(USER_DATA.Browser.MSIE){this._div=document.createElement("div");this._div.id="polygone_"+this._left+"_"+this._top;this._div.style.position="absolute";this._div.style.width=Math.round(this._width);this._div.style.height=Math.round(this._height);this._div.style.zIndex="102";this._div.style.border="0px";var h=document.createElement("v:shape");h.setAttribute("fillcolor",d);h.setAttribute("coordorigin","0 0");h.setAttribute("coordsize",Math.round(this._width)+" "+Math.round(this._height));h.style.left="0px";h.style.top="0px";h.style.width=Math.round(this._width)+"px";h.style.height=Math.round(this._height)+"px";h.style.position="absolute";var l=document.createElement("v:fill");l.opacity=g;h.appendChild(l);var m=document.createElement("v:stroke");m.fillstyle=d;m.opacity=g;m.joinstyle="miter";h.appendChild(m);var n=document.createElement("v:path");h.appendChild(n);var k=this._screen_coords[0];var a="m "+Math.round(k.x)+","+Math.round(k.y)+" l ";for(var e=1;e<this._screen_coords.length;e++){if(e!=1){a+=", "}var j=this._screen_coords[e];a+=Math.round(j.x)+","+Math.round(j.y)}a+=" x e";n.setAttribute("v",a);this._div.appendChild(h)}else{this._div=document.createElement("canvas");this._div.id="polygone_"+this._left+"_"+this._top;this._div.style.position="absolute";this._div.width=Math.round(this._width);this._div.height=Math.round(this._height);this._div.style.zIndex="102";this._div.style.border="0px";var b;try{b=this._div.getContext("2d")}catch(c){return}b.lineWidth=f;b.lineCap="round";b.lineJoin="round";b.fillStyle=(d==null)?"rgb(0, 0, 200)":d;b.globalAlpha=g;b.beginPath();for(e=0;e<this._screen_coords.length;e++){var j=this._screen_coords[e];if(e==0){b.moveTo(j.x,j.y)}else{b.lineTo(j.x,j.y)}}b.fill()}};VRemoteRequest.prototype._script;VRemoteRequest.prototype._callback;function VRemoteRequest(){return this}var _VISICOM_remoteRequestMap=new Object();VRemoteRequest.prototype.request=function(a,c){this._callback=c;var b="remote_"+Math.random();_VISICOM_remoteRequestMap[b]=this;this._script=document.createElement("script");this._script.id=b;this._script.type="text/javascript";this._script.src=a+"&id="+b+"&mapname="+_VISICOM_MapGlobalContext.mapname()+"_"+_VISICOM_MapGlobalContext.language();document.body.appendChild(this._script)};function _VISICOM_remoteRequestCallback(c,b){var a=_VISICOM_remoteRequestMap[c];if(a==null){return}if(a._callback!=null){a._callback(b)}if(a._script!=null){document.body.removeChild(a._script);delete(a._script)}_VISICOM_remoteRequestMap[c]=null}var VRemoteCall=(function(){function c(){if(arguments.length<2){return}var n=arguments[0];var m=arguments[arguments.length-1];var h=new VRemoteRequest();var f=VisicomCommons.API_URL+n+"?";for(var g=1;g<arguments.length-1;g++){var l=arguments[g];if(g>=2){f+="&"}if((l.lng!=null)&&(l.lat!=null)){var k="";k+=l.lng.toPrecision(6)+","+l.lat.toPrecision(6)+";";f+="p"+g+"="+k}else{if(l instanceof VMapObject){k="";for(var e=0;e<l.coords().length;e++){k+=l.coords(e).lng.toPrecision(6)+","+l.coords(e).lat.toPrecision(6)+";"}f+="p"+g+"="+k}else{if(typeof(l)=="number"){f+="p"+g+"="+l}else{if(typeof(l)=="string"){f+="p"+g+"="+encodeURI(l)}}}}}if(arguments.length>=2){f+="&"}else{f+="?"}f+=((VMap.AUTH_KEY!="")?"key="+VMap.AUTH_KEY:"");h.request(f,function(i){i=i||false;if(i.error!=null){throw new Error(i.error)}VMapObject._wrap(null,i);m(i)})}function a(){c("address",arguments)}function b(){c("route",arguments)}function d(){c("language",arguments)}return{request:c,address:a,route:b}})();VBounds.prototype=new VRect();VBounds.prototype.min=function(){return this._coords[0]};VBounds.prototype.max=function(){return this._coords[1]};function VBounds(){VRect.call(this,arguments);return this}VMap.prototype.clientBounds=function(){return this.clientRect()};VPoint.prototype=new VMapObject();function VPoint(a,b){VMapObject.call(this,{lng:a,lat:b});return this}VPoint.prototype.distanceTo=function(b){var a=VisicomCommons.GeoCalcLen([this.coords(0),b]);return a};VRoute.prototype=new VMapObject();VRoute.prototype._distance=null;VRoute.prototype.distance=function(a){if(arguments.length==0){return this._distance}this._distance=a;return this};function VRoute(a){VMapObject.call(this);if(a!=null){this.edges(a)}this._type="route";return this}VRoute.prototype.edges=function(a){if(arguments.length==0){return this._childs}this._childs=a;return this};VEdge.prototype=new VLine();VEdge.prototype._name=null;VEdge.prototype._distance=null;function VEdge(a){VLine.call(this,a);return this}VEdge.prototype.name=function(a){if(arguments.length==0){return this._name}this._name=a;return this};VEdge.prototype.distance=function(a){if(arguments.length==0){return this._distance}this._distance=a;return this};VMapObject.prototypes.route=VRoute.prototype;VMapObject.prototypes.edge=VEdge.prototype;VMap.prototype.init=function(){if(this.initialized){return}this._screenOffsets=[];this._init_();this._mapName="world_ru";this._mapName=this._mapName.split("_")[0];this._language="ru";var l=parseFloat(-200375082);var f=parseFloat(200375082);var j=parseFloat(-200375083);var c=parseFloat(200375083);this.__minLng=l;this.__maxLng=f;this.__minLat=j;this.__maxLat=c;var d=VisicomCommons.convertToGeoProjection(l,j);var m=VisicomCommons.convertToGeoProjection(f,c);this._bounds=new VRect(d,m);var e=0;var b="http://tms.visicom.ua/1.0.3/world_ru/0";var g=b.split("/");var h=g[g.length-1];var k=Math.pow(2,h)*VMapTile.TILE_WIDTH;var n=Math.pow(2,h)*VMapTile.TILE_HEIGHT;var a=new VMapZoom(k,n,e,this);a._base_url=b;a._units_per_pixel=1565430.332031;this._maps[e]=a;e++;var b="http://tms.visicom.ua/1.0.3/world_ru/1";var g=b.split("/");var h=g[g.length-1];var k=Math.pow(2,h)*VMapTile.TILE_WIDTH;var n=Math.pow(2,h)*VMapTile.TILE_HEIGHT;var a=new VMapZoom(k,n,e,this);a._base_url=b;a._units_per_pixel=782715.166016;this._maps[e]=a;e++;var b="http://tms.visicom.ua/1.0.3/world_ru/2";var g=b.split("/");var h=g[g.length-1];var k=Math.pow(2,h)*VMapTile.TILE_WIDTH;var n=Math.pow(2,h)*VMapTile.TILE_HEIGHT;var a=new VMapZoom(k,n,e,this);a._base_url=b;a._units_per_pixel=391357.583008;this._maps[e]=a;e++;var b="http://tms.visicom.ua/1.0.3/world_ru/3";var g=b.split("/");var h=g[g.length-1];var k=Math.pow(2,h)*VMapTile.TILE_WIDTH;var n=Math.pow(2,h)*VMapTile.TILE_HEIGHT;var a=new VMapZoom(k,n,e,this);a._base_url=b;a._units_per_pixel=195678.791504;this._maps[e]=a;e++;var b="http://tms.visicom.ua/1.0.3/world_ru/4";var g=b.split("/");var h=g[g.length-1];var k=Math.pow(2,h)*VMapTile.TILE_WIDTH;var n=Math.pow(2,h)*VMapTile.TILE_HEIGHT;var a=new VMapZoom(k,n,e,this);a._base_url=b;a._units_per_pixel=97839.395752;this._maps[e]=a;e++;var b="http://tms.visicom.ua/1.0.3/world_ru/5";var g=b.split("/");var h=g[g.length-1];var k=Math.pow(2,h)*VMapTile.TILE_WIDTH;var n=Math.pow(2,h)*VMapTile.TILE_HEIGHT;var a=new VMapZoom(k,n,e,this);a._base_url=b;a._units_per_pixel=48919.697876;this._maps[e]=a;e++;var b="http://tms.visicom.ua/1.0.3/world_ru/6";var g=b.split("/");var h=g[g.length-1];var k=Math.pow(2,h)*VMapTile.TILE_WIDTH;var n=Math.pow(2,h)*VMapTile.TILE_HEIGHT;var a=new VMapZoom(k,n,e,this);a._base_url=b;a._units_per_pixel=24459.848938;this._maps[e]=a;e++;var b="http://tms.visicom.ua/1.0.3/world_ru/7";var g=b.split("/");var h=g[g.length-1];var k=Math.pow(2,h)*VMapTile.TILE_WIDTH;var n=Math.pow(2,h)*VMapTile.TILE_HEIGHT;var a=new VMapZoom(k,n,e,this);a._base_url=b;a._units_per_pixel=12229.924469;this._maps[e]=a;e++;var b="http://tms.visicom.ua/1.0.3/world_ru/8";var g=b.split("/");var h=g[g.length-1];var k=Math.pow(2,h)*VMapTile.TILE_WIDTH;var n=Math.pow(2,h)*VMapTile.TILE_HEIGHT;var a=new VMapZoom(k,n,e,this);a._base_url=b;a._units_per_pixel=6114.962234;this._maps[e]=a;e++;var b="http://tms.visicom.ua/1.0.3/world_ru/9";var g=b.split("/");var h=g[g.length-1];var k=Math.pow(2,h)*VMapTile.TILE_WIDTH;var n=Math.pow(2,h)*VMapTile.TILE_HEIGHT;var a=new VMapZoom(k,n,e,this);a._base_url=b;a._units_per_pixel=3057.481117;this._maps[e]=a;e++;var b="http://tms.visicom.ua/1.0.3/world_ru/10";var g=b.split("/");var h=g[g.length-1];var k=Math.pow(2,h)*VMapTile.TILE_WIDTH;var n=Math.pow(2,h)*VMapTile.TILE_HEIGHT;var a=new VMapZoom(k,n,e,this);a._base_url=b;a._units_per_pixel=1528.740559;this._maps[e]=a;e++;var b="http://tms.visicom.ua/1.0.3/world_ru/11";var g=b.split("/");var h=g[g.length-1];var k=Math.pow(2,h)*VMapTile.TILE_WIDTH;var n=Math.pow(2,h)*VMapTile.TILE_HEIGHT;var a=new VMapZoom(k,n,e,this);a._base_url=b;a._units_per_pixel=764.370279;this._maps[e]=a;e++;var b="http://tms.visicom.ua/1.0.3/world_ru/12";var g=b.split("/");var h=g[g.length-1];var k=Math.pow(2,h)*VMapTile.TILE_WIDTH;var n=Math.pow(2,h)*VMapTile.TILE_HEIGHT;var a=new VMapZoom(k,n,e,this);a._base_url=b;a._units_per_pixel=382.18514;this._maps[e]=a;e++;var b="http://tms.visicom.ua/1.0.3/world_ru/13";var g=b.split("/");var h=g[g.length-1];var k=Math.pow(2,h)*VMapTile.TILE_WIDTH;var n=Math.pow(2,h)*VMapTile.TILE_HEIGHT;var a=new VMapZoom(k,n,e,this);a._base_url=b;a._units_per_pixel=191.09257;this._maps[e]=a;e++;var b="http://tms.visicom.ua/1.0.3/world_ru/14";var g=b.split("/");var h=g[g.length-1];var k=Math.pow(2,h)*VMapTile.TILE_WIDTH;var n=Math.pow(2,h)*VMapTile.TILE_HEIGHT;var a=new VMapZoom(k,n,e,this);a._base_url=b;a._units_per_pixel=95.546285;this._maps[e]=a;e++;var b="http://tms.visicom.ua/1.0.3/world_ru/15";var g=b.split("/");var h=g[g.length-1];var k=Math.pow(2,h)*VMapTile.TILE_WIDTH;var n=Math.pow(2,h)*VMapTile.TILE_HEIGHT;var a=new VMapZoom(k,n,e,this);a._base_url=b;a._units_per_pixel=47.773142;this._maps[e]=a;e++;var b="http://tms.visicom.ua/1.0.3/world_ru/16";var g=b.split("/");var h=g[g.length-1];var k=Math.pow(2,h)*VMapTile.TILE_WIDTH;var n=Math.pow(2,h)*VMapTile.TILE_HEIGHT;var a=new VMapZoom(k,n,e,this);a._base_url=b;a._units_per_pixel=23.886571;this._maps[e]=a;e++;var b="http://tms.visicom.ua/1.0.3/world_ru/17";var g=b.split("/");var h=g[g.length-1];var k=Math.pow(2,h)*VMapTile.TILE_WIDTH;var n=Math.pow(2,h)*VMapTile.TILE_HEIGHT;var a=new VMapZoom(k,n,e,this);a._base_url=b;a._units_per_pixel=11.943286;this._maps[e]=a;e++;var b="http://tms.visicom.ua/1.0.3/world_ru/18";var g=b.split("/");var h=g[g.length-1];var k=Math.pow(2,h)*VMapTile.TILE_WIDTH;var n=Math.pow(2,h)*VMapTile.TILE_HEIGHT;var a=new VMapZoom(k,n,e,this);a._base_url=b;a._units_per_pixel=5.971643;this._maps[e]=a;e++;this._currentMap=this._maps[this._zoom_index];this._showMap();this._zoomControl._createDOMElement();this._zoomControl.position(this._zoom_index);this.initialized=true};VMapObject.prototypes.mapobject=VMapObject.prototype;VMapObject.prototypes.layer=VLayer.prototype;VMapObject.prototypes.collection=VLayer.prototype;VMapObject.prototypes.label=VLabel.prototype;VMapObject.prototypes.marker=VMarker.prototype;VMapObject.prototypes.info=VInfoWindow.prototype;VMapObject.prototypes.line=VLine.prototype;VMapObject.prototypes.area=VArea.prototype;VMapObject.prototypes.multiline=VMultiLine.prototype;VMapObject.prototypes.rect=VRect.prototype;