var Prototype={Version:'1.5.0',BrowserFeatures:{XPath:!!document.evaluate},ScriptFragment:'(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)',emptyFunction:function(){},K:function(x){return x}}
var Class={create:function(){return function(){this.initialize.apply(this,arguments);}}}
var Abstract=new Object();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===undefined)return'undefined';if(object===null)return'null';return object.inspect?object.inspect():object.toString();}catch(e){if(e instanceof RangeError)return'...';throw e;}},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);}});Function.prototype.bind=function(){var __method=this,args=$A(arguments),object=args.shift();return function(){return __method.apply(object,args.concat($A(arguments)));}}
Function.prototype.bindAsEventListener=function(object){var __method=this,args=$A(arguments),object=args.shift();return function(event){return __method.apply(object,[(event||window.event)].concat(args).concat($A(arguments)));}}
Object.extend(Number.prototype,{toColorPart:function(){var digits=this.toString(16);if(this<16)return'0'+digits;return digits;},succ:function(){return this+1;},times:function(iterator){$R(0,this,true).each(iterator);return this;}});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;}}
var PeriodicalExecuter=Class.create();PeriodicalExecuter.prototype={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);},stop:function(){if(!this.timer)return;clearInterval(this.timer);this.timer=null;},onTimerEvent:function(){if(!this.currentlyExecuting){try{this.currentlyExecuting=true;this.callback(this);}finally{this.currentlyExecuting=false;}}}}
String.interpret=function(value){return value==null?'':String(value);}
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=count===undefined?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 this;},truncate:function(length,truncation){length=length||30;truncation=truncation===undefined?'...':truncation;return this.length>length?this.slice(0,length-truncation.length)+truncation: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 div=document.createElement('div');var text=document.createTextNode(this);div.appendChild(text);return div.innerHTML;},unescapeHTML:function(){var div=document.createElement('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 name=decodeURIComponent(pair[0]);var value=pair[1]?decodeURIComponent(pair[1]):undefined;if(hash[name]!==undefined){if(hash[name].constructor!=Array)
hash[name]=[hash[name]];if(value)hash[name].push(value);}
else hash[name]=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);},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.replace(/\\/g,'\\\\');if(useDoubleQuotes)
return'"'+escapedString.replace(/"/g,'\\"')+'"';else
return"'"+escapedString.replace(/'/g,'\\\'')+"'";}});String.prototype.gsub.prepareReplacement=function(replacement){if(typeof replacement=='function')return replacement;var template=new Template(replacement);return function(match){return template.evaluate(match)};}
String.prototype.parseQuery=String.prototype.toQueryParams;var Template=Class.create();Template.Pattern=/(^|.|\r|\n)(#\{(.*?)\})/;Template.prototype={initialize:function(template,pattern){this.template=template.toString();this.pattern=pattern||Template.Pattern;},evaluate:function(object){return this.template.gsub(this.pattern,function(match){var before=match[1];if(before=='\\')return match[2];return before+String.interpret(object[match[3]]);});}}
var $break=new Object();var $continue=new Object();var Enumerable={each:function(iterator){var index=0;try{this._each(function(value){try{iterator(value,index++);}catch(e){if(e!=$continue)throw e;}});}catch(e){if(e!=$break)throw e;}
return this;},eachSlice:function(number,iterator){var index=-number,slices=[],array=this.toArray();while((index+=number)<array.length)
slices.push(array.slice(index,index+number));return slices.map(iterator);},all:function(iterator){var result=true;this.each(function(value,index){result=result&&!!(iterator||Prototype.K)(value,index);if(!result)throw $break;});return result;},any:function(iterator){var result=false;this.each(function(value,index){if(result=!!(iterator||Prototype.K)(value,index))
throw $break;});return result;},collect:function(iterator){var results=[];this.each(function(value,index){results.push((iterator||Prototype.K)(value,index));});return results;},detect:function(iterator){var result;this.each(function(value,index){if(iterator(value,index)){result=value;throw $break;}});return result;},findAll:function(iterator){var results=[];this.each(function(value,index){if(iterator(value,index))
results.push(value);});return results;},grep:function(pattern,iterator){var results=[];this.each(function(value,index){var stringValue=value.toString();if(stringValue.match(pattern))
results.push((iterator||Prototype.K)(value,index));})
return results;},include:function(object){var found=false;this.each(function(value){if(value==object){found=true;throw $break;}});return found;},inGroupsOf:function(number,fillWith){fillWith=fillWith===undefined?null:fillWith;return this.eachSlice(number,function(slice){while(slice.length<number)slice.push(fillWith);return slice;});},inject:function(memo,iterator){this.each(function(value,index){memo=iterator(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){var result;this.each(function(value,index){value=(iterator||Prototype.K)(value,index);if(result==undefined||value>=result)
result=value;});return result;},min:function(iterator){var result;this.each(function(value,index){value=(iterator||Prototype.K)(value,index);if(result==undefined||value<result)
result=value;});return result;},partition:function(iterator){var trues=[],falses=[];this.each(function(value,index){((iterator||Prototype.K)(value,index)?trues:falses).push(value);});return[trues,falses];},pluck:function(property){var results=[];this.each(function(value,index){results.push(value[property]);});return results;},reject:function(iterator){var results=[];this.each(function(value,index){if(!iterator(value,index))
results.push(value);});return results;},sortBy:function(iterator){return this.map(function(value,index){return{value:value,criteria:iterator(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(typeof args.last()=='function')
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,member:Enumerable.include,entries:Enumerable.toArray});var $A=Array.from=function(iterable){if(!iterable)return[];if(iterable.toArray){return iterable.toArray();}else{var results=[];for(var i=0,length=iterable.length;i<length;i++)
results.push(iterable[i]);return results;}}
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(value&&value.constructor==Array?value.flatten():[value]);});},without:function(){var values=$A(arguments);return this.select(function(value){return!values.include(value);});},indexOf:function(object){for(var i=0,length=this.length;i<length;i++)
if(this[i]==object)return i;return-1;},reverse:function(inline){return(inline!==false?this:this.toArray())._reverse();},reduce:function(){return this.length>1?this:this[0];},uniq:function(){return this.inject([],function(array,value){return array.include(value)?array:array.concat([value]);});},clone:function(){return[].concat(this);},size:function(){return this.length;},inspect:function(){return'['+this.map(Object.inspect).join(', ')+']';}});Array.prototype.toArray=Array.prototype.clone;function $w(string){string=string.strip();return string?string.split(/\s+/):[];}
if(window.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(arguments[i].constructor==Array){for(var j=0,arrayLength=arguments[i].length;j<arrayLength;j++)
array.push(arguments[i][j]);}else{array.push(arguments[i]);}}
return array;}}
var Hash=function(obj){Object.extend(this,obj||{});};Object.extend(Hash,{toQueryString:function(obj){var parts=[];this.prototype._each.call(obj,function(pair){if(!pair.key)return;if(pair.value&&pair.value.constructor==Array){var values=pair.value.compact();if(values.length<2)pair.value=values.reduce();else{key=encodeURIComponent(pair.key);values.each(function(value){value=value!=undefined?encodeURIComponent(value):'';parts.push(key+'='+encodeURIComponent(value));});return;}}
if(pair.value==undefined)pair[1]='';parts.push(pair.map(encodeURIComponent).join('='));});return parts.join('&');}});Object.extend(Hash.prototype,Enumerable);Object.extend(Hash.prototype,{_each:function(iterator){for(var key in this){var value=this[key];if(value&&value==Hash.prototype[key])continue;var pair=[key,value];pair.key=key;pair.value=value;iterator(pair);}},keys:function(){return this.pluck('key');},values:function(){return this.pluck('value');},merge:function(hash){return $H(hash).inject(this,function(mergedHash,pair){mergedHash[pair.key]=pair.value;return mergedHash;});},remove:function(){var result;for(var i=0,length=arguments.length;i<length;i++){var value=this[arguments[i]];if(value!==undefined){if(result===undefined)result=value;else{if(result.constructor!=Array)result=[result];result.push(value)}}
delete this[arguments[i]];}
return result;},toQueryString:function(){return Hash.toQueryString(this);},inspect:function(){return'#<Hash:{'+this.map(function(pair){return pair.map(Object.inspect).join(': ');}).join(', ')+'}>';}});function $H(object){if(object&&object.constructor==Hash)return object;return new Hash(object);};ObjectRange=Class.create();Object.extend(ObjectRange.prototype,Enumerable);Object.extend(ObjectRange.prototype,{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(typeof responder[callback]=='function'){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=function(){};Ajax.Base.prototype={setOptions:function(options){this.options={method:'post',asynchronous:true,contentType:'application/x-www-form-urlencoded',encoding:'UTF-8',parameters:''}
Object.extend(this.options,options||{});this.options.method=this.options.method.toLowerCase();if(typeof this.options.parameters=='string')
this.options.parameters=this.options.parameters.toQueryParams();}}
Ajax.Request=Class.create();Ajax.Request.Events=['Uninitialized','Loading','Loaded','Interactive','Complete'];Ajax.Request.prototype=Object.extend(new Ajax.Base(),{_complete:false,initialize:function(url,options){this.transport=Ajax.getTransport();this.setOptions(options);this.request(url);},request:function(url){this.url=url;this.method=this.options.method;var params=this.options.parameters;if(!['get','post'].include(this.method)){params['_method']=this.method;this.method='post';}
params=Hash.toQueryString(params);if(params&&/Konqueror|Safari|KHTML/.test(navigator.userAgent))params+='&_=';if(this.method=='get'&&params)
this.url+=(this.url.indexOf('?')>-1?'&':'?')+params;try{Ajax.Responders.dispatch('onCreate',this,this.transport);this.transport.open(this.method.toUpperCase(),this.url,this.options.asynchronous);if(this.options.asynchronous)
setTimeout(function(){this.respondToReadyState(1)}.bind(this),10);this.transport.onreadystatechange=this.onStateChange.bind(this);this.setRequestHeaders();var body=this.method=='post'?(this.options.postBody||params):null;this.transport.send(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+
(this.options.encoding?'; 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(typeof extras.push=='function')
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(){return!this.transport.status||(this.transport.status>=200&&this.transport.status<300);},respondToReadyState:function(readyState){var state=Ajax.Request.Events[readyState];var transport=this.transport,json=this.evalJSON();if(state=='Complete'){try{this._complete=true;(this.options['on'+this.transport.status]||this.options['on'+(this.success()?'Success':'Failure')]||Prototype.emptyFunction)(transport,json);}catch(e){this.dispatchException(e);}
if((this.getHeader('Content-type')||'text/javascript').strip().match(/^(text|application)\/(x-)?(java|ecma)script(;.*)?$/i))
this.evalResponse();}
try{(this.options['on'+state]||Prototype.emptyFunction)(transport,json);Ajax.Responders.dispatch('on'+state,this,transport,json);}catch(e){this.dispatchException(e);}
if(state=='Complete'){this.transport.onreadystatechange=Prototype.emptyFunction;}},getHeader:function(name){try{return this.transport.getResponseHeader(name);}catch(e){return null}},evalJSON:function(){try{var json=this.getHeader('X-JSON');return json?eval('('+json+')'):null;}catch(e){return null}},evalResponse:function(){try{return eval(this.transport.responseText);}catch(e){this.dispatchException(e);}},dispatchException:function(exception){(this.options.onException||Prototype.emptyFunction)(this,exception);Ajax.Responders.dispatch('onException',this,exception);}});Ajax.Updater=Class.create();Object.extend(Object.extend(Ajax.Updater.prototype,Ajax.Request.prototype),{initialize:function(container,url,options){this.container={success:(container.success||container),failure:(container.failure||(container.success?null:container))}
this.transport=Ajax.getTransport();this.setOptions(options);var onComplete=this.options.onComplete||Prototype.emptyFunction;this.options.onComplete=(function(transport,param){this.updateContent();onComplete(transport,param);}).bind(this);this.request(url);},updateContent:function(){var receiver=this.container[this.success()?'success':'failure'];var response=this.transport.responseText;if(!this.options.evalScripts)response=response.stripScripts();if(receiver=$(receiver)){if(this.options.insertion)
new this.options.insertion(receiver,response);else
receiver.update(response);}
if(this.success()){if(this.onComplete)
setTimeout(this.onComplete.bind(this),10);}}});Ajax.PeriodicalUpdater=Class.create();Ajax.PeriodicalUpdater.prototype=Object.extend(new Ajax.Base(),{initialize:function(container,url,options){this.setOptions(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(request){if(this.options.decay){this.decay=(request.responseText==this.lastText?this.decay*this.options.decay:1);this.lastText=request.responseText;}
this.timer=setTimeout(this.onTimerEvent.bind(this),this.decay*this.frequency*1000);},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(typeof element=='string')
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(query.snapshotItem(i));return results;};}
document.getElementsByClassName=function(className,parentElement){if(Prototype.BrowserFeatures.XPath){var q=".//*[contains(concat(' ', @class, ' '), ' "+className+" ')]";return document._getElementsByXPath(q,parentElement);}else{var children=($(parentElement)||document.body).getElementsByTagName('*');var elements=[],child;for(var i=0,length=children.length;i<length;i++){child=children[i];if(Element.hasClassName(child,className))
elements.push(Element.extend(child));}
return elements;}};if(!window.Element)
var Element=new Object();Element.extend=function(element){if(!element||_nativeExtensions||element.nodeType==3)return element;if(!element._extended&&element.tagName&&element!=window){var methods=Object.clone(Element.Methods),cache=Element.extend.cache;if(element.tagName=='FORM')
Object.extend(methods,Form.Methods);if(['INPUT','TEXTAREA','SELECT'].include(element.tagName))
Object.extend(methods,Form.Element.Methods);Object.extend(methods,Element.Methods.Simulated);for(var property in methods){var value=methods[property];if(typeof value=='function'&&!(property in element))
element[property]=cache.findOrStore(value);}}
element._extended=true;return element;};Element.extend.cache={findOrStore:function(value){return this[value]=this[value]||function(){return value.apply(null,[this].concat($A(arguments)));}}};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).style.display='none';return element;},show:function(element){$(element).style.display='';return element;},remove:function(element){element=$(element);element.parentNode.removeChild(element);return element;},update:function(element,html){html=typeof html=='undefined'?'':html.toString();$(element).innerHTML=html.stripScripts();setTimeout(function(){html.evalScripts()},10);return element;},replace:function(element,html){element=$(element);html=typeof html=='undefined'?'':html.toString();if(element.outerHTML){element.outerHTML=html.stripScripts();}else{var range=element.ownerDocument.createRange();range.selectNodeContents(element);element.parentNode.replaceChild(range.createContextualFragment(html.stripScripts()),element);}
setTimeout(function(){html.evalScripts()},10);return element;},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 $A($(element).getElementsByTagName('*'));},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(typeof selector=='string')
selector=new Selector(selector);return selector.match($(element));},up:function(element,expression,index){return Selector.findElement($(element).ancestors(),expression,index);},down:function(element,expression,index){return Selector.findElement($(element).descendants(),expression,index);},previous:function(element,expression,index){return Selector.findElement($(element).previousSiblings(),expression,index);},next:function(element,expression,index){return Selector.findElement($(element).nextSiblings(),expression,index);},getElementsBySelector:function(){var args=$A(arguments),element=$(args.shift());return Selector.findChildElements(element,args);},getElementsByClassName:function(element,className){return document.getElementsByClassName(className,element);},readAttribute:function(element,name){element=$(element);if(document.all&&!window.opera){var t=Element._attributeTranslations;if(t.values[name])return t.values[name](element,name);if(t.names[name])name=t.names[name];var attribute=element.attributes[name];if(attribute)return attribute.nodeValue;}
return element.getAttribute(name);},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;if(elementClassName.length==0)return false;if(elementClassName==className||elementClassName.match(new RegExp("(^|\\s)"+className+"(\\s|$)")))
return true;return false;},addClassName:function(element,className){if(!(element=$(element)))return;Element.classNames(element).add(className);return element;},removeClassName:function(element,className){if(!(element=$(element)))return;Element.classNames(element).remove(className);return element;},toggleClassName:function(element,className){if(!(element=$(element)))return;Element.classNames(element)[element.hasClassName(className)?'remove':'add'](className);return element;},observe:function(){Event.observe.apply(Event,arguments);return $A(arguments).first();},stopObserving:function(){Event.stopObserving.apply(Event,arguments);return $A(arguments).first();},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.match(/^\s*$/);},descendantOf:function(element,ancestor){element=$(element),ancestor=$(ancestor);while(element=element.parentNode)
if(element==ancestor)return true;return false;},scrollTo:function(element){element=$(element);var pos=Position.cumulativeOffset(element);window.scrollTo(pos[0],pos[1]);return element;},getStyle:function(element,style){element=$(element);if(['float','cssFloat'].include(style))
style=(typeof element.style.styleFloat!='undefined'?'styleFloat':'cssFloat');style=style.camelize();var value=element.style[style];if(!value){if(document.defaultView&&document.defaultView.getComputedStyle){var css=document.defaultView.getComputedStyle(element,null);value=css?css[style]:null;}else if(element.currentStyle){value=element.currentStyle[style];}}
if((value=='auto')&&['width','height'].include(style)&&(element.getStyle('display')!='none'))
value=element['offset'+style.capitalize()]+'px';if(window.opera&&['left','top','right','bottom'].include(style))
if(Element.getStyle(element,'position')=='static')value='auto';if(style=='opacity'){if(value)return parseFloat(value);if(value=(element.getStyle('filter')||'').match(/alpha\(opacity=(.*)\)/))
if(value[1])return parseFloat(value[1])/100;return 1.0;}
return value=='auto'?null:value;},setStyle:function(element,style){element=$(element);for(var name in style){var value=style[name];if(name=='opacity'){if(value==1){value=(/Gecko/.test(navigator.userAgent)&&!/Konqueror|Safari|KHTML/.test(navigator.userAgent))?0.999999:1.0;if(/MSIE/.test(navigator.userAgent)&&!window.opera)
element.style.filter=element.getStyle('filter').replace(/alpha\([^\)]*\)/gi,'');}else if(value==''){if(/MSIE/.test(navigator.userAgent)&&!window.opera)
element.style.filter=element.getStyle('filter').replace(/alpha\([^\)]*\)/gi,'');}else{if(value<0.00001)value=0;if(/MSIE/.test(navigator.userAgent)&&!window.opera)
element.style.filter=element.getStyle('filter').replace(/alpha\([^\)]*\)/gi,'')+'alpha(opacity='+value*100+')';}}else if(['float','cssFloat'].include(name))name=(typeof element.style.styleFloat!='undefined')?'styleFloat':'cssFloat';element.style[name.camelize()]=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(window.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.style.overflow||'auto';if((Element.getStyle(element,'overflow')||'visible')!='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;}};Object.extend(Element.Methods,{childOf:Element.Methods.descendantOf});Element._attributeTranslations={};Element._attributeTranslations.names={colspan:"colSpan",rowspan:"rowSpan",valign:"vAlign",datetime:"dateTime",accesskey:"accessKey",tabindex:"tabIndex",enctype:"encType",maxlength:"maxLength",readonly:"readOnly",longdesc:"longDesc"};Element._attributeTranslations.values={_getAttr:function(element,attribute){return element.getAttribute(attribute,2);},_flag:function(element,attribute){return $(element).hasAttribute(attribute)?attribute:null;},style:function(element){return element.style.cssText.toLowerCase();},title:function(element){var node=element.getAttributeNode('title');return node.specified?node.nodeValue:null;}};Object.extend(Element._attributeTranslations.values,{href:Element._attributeTranslations.values._getAttr,src:Element._attributeTranslations.values._getAttr,disabled:Element._attributeTranslations.values._flag,checked:Element._attributeTranslations.values._flag,readonly:Element._attributeTranslations.values._flag,multiple:Element._attributeTranslations.values._flag});Element.Methods.Simulated={hasAttribute:function(element,attribute){var t=Element._attributeTranslations;attribute=t.names[attribute]||attribute;return $(element).getAttributeNode(attribute).specified;}};if(document.all&&!window.opera){Element.Methods.update=function(element,html){element=$(element);html=typeof html=='undefined'?'':html.toString();var tagName=element.tagName.toUpperCase();if(['THEAD','TBODY','TR','TD'].include(tagName)){var div=document.createElement('div');switch(tagName){case'THEAD':case'TBODY':div.innerHTML='<table><tbody>'+html.stripScripts()+'</tbody></table>';depth=2;break;case'TR':div.innerHTML='<table><tbody><tr>'+html.stripScripts()+'</tr></tbody></table>';depth=3;break;case'TD':div.innerHTML='<table><tbody><tr><td>'+html.stripScripts()+'</td></tr></tbody></table>';depth=4;}
$A(element.childNodes).each(function(node){element.removeChild(node)});depth.times(function(){div=div.firstChild});$A(div.childNodes).each(function(node){element.appendChild(node)});}else{element.innerHTML=html.stripScripts();}
setTimeout(function(){html.evalScripts()},10);return element;}};Object.extend(Element,Element.Methods);var _nativeExtensions=false;if(/Konqueror|Safari|KHTML/.test(navigator.userAgent))
['','Form','Input','TextArea','Select'].each(function(tag){var className='HTML'+tag+'Element';if(window[className])return;var klass=window[className]={};klass.prototype=document.createElement(tag?tag.toLowerCase():'div').__proto__;});Element.addMethods=function(methods){Object.extend(Element.Methods,methods||{});function copy(methods,destination,onlyIfAbsent){onlyIfAbsent=onlyIfAbsent||false;var cache=Element.extend.cache;for(var property in methods){var value=methods[property];if(!onlyIfAbsent||!(property in destination))
destination[property]=cache.findOrStore(value);}}
if(typeof HTMLElement!='undefined'){copy(Element.Methods,HTMLElement.prototype);copy(Element.Methods.Simulated,HTMLElement.prototype,true);copy(Form.Methods,HTMLFormElement.prototype);[HTMLInputElement,HTMLTextAreaElement,HTMLSelectElement].each(function(klass){copy(Form.Element.Methods,klass.prototype);});_nativeExtensions=true;}}
var Toggle=new Object();Toggle.display=Element.toggle;Abstract.Insertion=function(adjacency){this.adjacency=adjacency;}
Abstract.Insertion.prototype={initialize:function(element,content){this.element=$(element);this.content=content.stripScripts();if(this.adjacency&&this.element.insertAdjacentHTML){try{this.element.insertAdjacentHTML(this.adjacency,this.content);}catch(e){var tagName=this.element.tagName.toUpperCase();if(['TBODY','TR'].include(tagName)){this.insertContent(this.contentFromAnonymousTable());}else{throw e;}}}else{this.range=this.element.ownerDocument.createRange();if(this.initializeRange)this.initializeRange();this.insertContent([this.range.createContextualFragment(this.content)]);}
setTimeout(function(){content.evalScripts()},10);},contentFromAnonymousTable:function(){var div=document.createElement('div');div.innerHTML='<table><tbody>'+this.content+'</tbody></table>';return $A(div.childNodes[0].childNodes[0].childNodes);}}
var Insertion=new Object();Insertion.Before=Class.create();Insertion.Before.prototype=Object.extend(new Abstract.Insertion('beforeBegin'),{initializeRange:function(){this.range.setStartBefore(this.element);},insertContent:function(fragments){fragments.each((function(fragment){this.element.parentNode.insertBefore(fragment,this.element);}).bind(this));}});Insertion.Top=Class.create();Insertion.Top.prototype=Object.extend(new Abstract.Insertion('afterBegin'),{initializeRange:function(){this.range.selectNodeContents(this.element);this.range.collapse(true);},insertContent:function(fragments){fragments.reverse(false).each((function(fragment){this.element.insertBefore(fragment,this.element.firstChild);}).bind(this));}});Insertion.Bottom=Class.create();Insertion.Bottom.prototype=Object.extend(new Abstract.Insertion('beforeEnd'),{initializeRange:function(){this.range.selectNodeContents(this.element);this.range.collapse(this.element);},insertContent:function(fragments){fragments.each((function(fragment){this.element.appendChild(fragment);}).bind(this));}});Insertion.After=Class.create();Insertion.After.prototype=Object.extend(new Abstract.Insertion('afterEnd'),{initializeRange:function(){this.range.setStartAfter(this.element);},insertContent:function(fragments){fragments.each((function(fragment){this.element.parentNode.insertBefore(fragment,this.element.nextSibling);}).bind(this));}});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);var Selector=Class.create();Selector.prototype={initialize:function(expression){this.params={classNames:[]};this.expression=expression.toString().strip();this.parseExpression();this.compileMatcher();},parseExpression:function(){function abort(message){throw'Parse error in selector: '+message;}
if(this.expression=='')abort('empty expression');var params=this.params,expr=this.expression,match,modifier,clause,rest;while(match=expr.match(/^(.*)\[([a-z0-9_:-]+?)(?:([~\|!]?=)(?:"([^"]*)"|([^\]\s]*)))?\]$/i)){params.attributes=params.attributes||[];params.attributes.push({name:match[2],operator:match[3],value:match[4]||match[5]||''});expr=match[1];}
if(expr=='*')return this.params.wildcard=true;while(match=expr.match(/^([^a-z0-9_-])?([a-z0-9_-]+)(.*)/i)){modifier=match[1],clause=match[2],rest=match[3];switch(modifier){case'#':params.id=clause;break;case'.':params.classNames.push(clause);break;case'':case undefined:params.tagName=clause.toUpperCase();break;default:abort(expr.inspect());}
expr=rest;}
if(expr.length>0)abort(expr.inspect());},buildMatchExpression:function(){var params=this.params,conditions=[],clause;if(params.wildcard)
conditions.push('true');if(clause=params.id)
conditions.push('element.readAttribute("id") == '+clause.inspect());if(clause=params.tagName)
conditions.push('element.tagName.toUpperCase() == '+clause.inspect());if((clause=params.classNames).length>0)
for(var i=0,length=clause.length;i<length;i++)
conditions.push('element.hasClassName('+clause[i].inspect()+')');if(clause=params.attributes){clause.each(function(attribute){var value='element.readAttribute('+attribute.name.inspect()+')';var splitValueBy=function(delimiter){return value+' && '+value+'.split('+delimiter.inspect()+')';}
switch(attribute.operator){case'=':conditions.push(value+' == '+attribute.value.inspect());break;case'~=':conditions.push(splitValueBy(' ')+'.include('+attribute.value.inspect()+')');break;case'|=':conditions.push(splitValueBy('-')+'.first().toUpperCase() == '+attribute.value.toUpperCase().inspect());break;case'!=':conditions.push(value+' != '+attribute.value.inspect());break;case'':case undefined:conditions.push('element.hasAttribute('+attribute.name.inspect()+')');break;default:throw'Unknown operator '+attribute.operator+' in selector';}});}
return conditions.join(' && ');},compileMatcher:function(){this.match=new Function('element','if (!element.tagName) return false; \
      element = $(element); \
      return '+this.buildMatchExpression());},findElements:function(scope){var element;if(element=$(this.params.id))
if(this.match(element))
if(!scope||Element.childOf(element,scope))
return[element];scope=(scope||document).getElementsByTagName(this.params.tagName||'*');var results=[];for(var i=0,length=scope.length;i<length;i++)
if(this.match(element=scope[i]))
results.push(Element.extend(element));return results;},toString:function(){return this.expression;}}
Object.extend(Selector,{matchElements:function(elements,expression){var selector=new Selector(expression);return elements.select(selector.match.bind(selector)).map(Element.extend);},findElement:function(elements,expression,index){if(typeof expression=='number')index=expression,expression=false;return Selector.matchElements(elements,expression||'*')[index||0];},findChildElements:function(element,expressions){return expressions.map(function(expression){return expression.match(/[^\s"]+(?:"[^"]*"[^\s"]+)*/g).inject([null],function(results,expr){var selector=new Selector(expr);return results.inject([],function(elements,result){return elements.concat(selector.findElements(result||element));});});}).flatten();}});function $$(){return Selector.findChildElements(document,$A(arguments));}
var Form={reset:function(form){$(form).reset();return form;},serializeElements:function(elements,getHash){var data=elements.inject({},function(result,element){if(!element.disabled&&element.name){var key=element.name,value=$(element).getValue();if(value!=undefined){if(result[key]){if(result[key].constructor!=Array)result[key]=[result[key]];result[key].push(value);}
else result[key]=value;}}
return result;});return getHash?data:Hash.toQueryString(data);}};Form.Methods={serialize:function(form,getHash){return Form.serializeElements(Form.getElements(form),getHash);},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().each(function(element){element.blur();element.disabled='true';});return form;},enable:function(form){form=$(form);form.getElements().each(function(element){element.disabled='';});return form;},findFirstElement:function(form){return $(form).getElements().find(function(element){return element.type!='hidden'&&!element.disabled&&['input','select','textarea'].include(element.tagName.toLowerCase());});},focusFirstElement:function(form){form=$(form);form.findFirstElement().activate();return form;}}
Object.extend(Form,Form.Methods);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 Hash.toQueryString(pair);}}
return'';},getValue:function(element){element=$(element);var method=element.tagName.toLowerCase();return Form.Element.Serializers[method](element);},clear:function(element){$(element).value='';return element;},present:function(element){return $(element).value!='';},activate:function(element){element=$(element);element.focus();if(element.select&&(element.tagName.toLowerCase()!='input'||!['button','reset','submit'].include(element.type)))
element.select();return element;},disable:function(element){element=$(element);element.disabled=true;return element;},enable:function(element){element=$(element);element.blur();element.disabled=false;return element;}}
Object.extend(Form.Element,Form.Element.Methods);var Field=Form.Element;var $F=Form.Element.getValue;Form.Element.Serializers={input:function(element){switch(element.type.toLowerCase()){case'checkbox':case'radio':return Form.Element.Serializers.inputSelector(element);default:return Form.Element.Serializers.textarea(element);}},inputSelector:function(element){return element.checked?element.value:null;},textarea:function(element){return element.value;},select:function(element){return this[element.type=='select-one'?'selectOne':'selectMany'](element);},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=function(){}
Abstract.TimedObserver.prototype={initialize:function(element,frequency,callback){this.frequency=frequency;this.element=$(element);this.callback=callback;this.lastValue=this.getValue();this.registerCallback();},registerCallback:function(){setInterval(this.onTimerEvent.bind(this),this.frequency*1000);},onTimerEvent:function(){var value=this.getValue();var changed=('string'==typeof this.lastValue&&'string'==typeof value?this.lastValue!=value:String(this.lastValue)!=String(value));if(changed){this.callback(this.element,value);this.lastValue=value;}}}
Form.Element.Observer=Class.create();Form.Element.Observer.prototype=Object.extend(new Abstract.TimedObserver(),{getValue:function(){return Form.Element.getValue(this.element);}});Form.Observer=Class.create();Form.Observer.prototype=Object.extend(new Abstract.TimedObserver(),{getValue:function(){return Form.serialize(this.element);}});Abstract.EventObserver=function(){}
Abstract.EventObserver.prototype={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.bind(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();Form.Element.EventObserver.prototype=Object.extend(new Abstract.EventObserver(),{getValue:function(){return Form.Element.getValue(this.element);}});Form.EventObserver=Class.create();Form.EventObserver.prototype=Object.extend(new Abstract.EventObserver(),{getValue:function(){return Form.serialize(this.element);}});if(!window.Event){var Event=new Object();}
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,element:function(event){return event.target||event.srcElement;},isLeftClick:function(event){return(((event.which)&&(event.which==1))||((event.button)&&(event.button==1)));},pointerX:function(event){return event.pageX||(event.clientX+
(document.documentElement.scrollLeft||document.body.scrollLeft));},pointerY:function(event){return event.pageY||(event.clientY+
(document.documentElement.scrollTop||document.body.scrollTop));},stop:function(event){if(event.preventDefault){event.preventDefault();event.stopPropagation();}else{event.returnValue=false;event.cancelBubble=true;}},findElement:function(event,tagName){var element=Event.element(event);while(element.parentNode&&(!element.tagName||(element.tagName.toUpperCase()!=tagName.toUpperCase())))
element=element.parentNode;return element;},observers:false,_observeAndCache:function(element,name,observer,useCapture){if(!this.observers)this.observers=[];if(element.addEventListener){this.observers.push([element,name,observer,useCapture]);element.addEventListener(name,observer,useCapture);}else if(element.attachEvent){this.observers.push([element,name,observer,useCapture]);element.attachEvent('on'+name,observer);}},unloadCache:function(){if(!Event.observers)return;for(var i=0,length=Event.observers.length;i<length;i++){Event.stopObserving.apply(this,Event.observers[i]);Event.observers[i][0]=null;}
Event.observers=false;},observe:function(element,name,observer,useCapture){if(element!="[object HTMLTableRowElement]"){element=$(element);useCapture=useCapture||false;if(name=='keypress'&&(navigator.appVersion.match(/Konqueror|Safari|KHTML/)||element.attachEvent))
name='keydown';Event._observeAndCache(element,name,observer,useCapture);}},stopObserving:function(element,name,observer,useCapture){element=$(element);useCapture=useCapture||false;if(name=='keypress'&&(navigator.appVersion.match(/Konqueror|Safari|KHTML/)||element.detachEvent))
name='keydown';if(element.removeEventListener){element.removeEventListener(name,observer,useCapture);}else if(element.detachEvent){try{element.detachEvent('on'+name,observer);}catch(e){}}}});if(navigator.appVersion.match(/\bMSIE\b/))
Event.observe(window,'unload',Event.unloadCache,false);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;},realOffset:function(element){var valueT=0,valueL=0;do{valueT+=element.scrollTop||0;valueL+=element.scrollLeft||0;element=element.parentNode;}while(element);return[valueL,valueT];},cumulativeOffset:function(element){var valueT=0,valueL=0;do{valueT+=element.offsetTop||0;valueL+=element.offsetLeft||0;element=element.offsetParent;}while(element);return[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=='BODY')break;var p=Element.getStyle(element,'position');if(p=='relative'||p=='absolute')break;}}while(element);return[valueL,valueT];},offsetParent: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;},within:function(element,x,y){if(this.includeScrollOffsets)
return this.withinIncludingScrolloffsets(element,x,y);this.xcomp=x;this.ycomp=y;this.offset=this.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=this.realOffset(element);this.xcomp=x+offsetcache[0]-this.deltaX;this.ycomp=y+offsetcache[1]-this.deltaY;this.offset=this.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;},page:function(forElement){var valueT=0,valueL=0;var element=forElement;do{valueT+=element.offsetTop||0;valueL+=element.offsetLeft||0;if(element.offsetParent==document.body)
if(Element.getStyle(element,'position')=='absolute')break;}while(element=element.offsetParent);element=forElement;do{if(!window.opera||element.tagName=='BODY'){valueT-=element.scrollTop||0;valueL-=element.scrollLeft||0;}}while(element=element.parentNode);return[valueL,valueT];},clone:function(source,target){var options=Object.extend({setLeft:true,setTop:true,setWidth:true,setHeight:true,offsetTop:0,offsetLeft:0},arguments[2]||{})
source=$(source);var p=Position.page(source);target=$(target);var delta=[0,0];var parent=null;if(Element.getStyle(target,'position')=='absolute'){parent=Position.offsetParent(target);delta=Position.page(parent);}
if(parent==document.body){delta[0]-=document.body.offsetLeft;delta[1]-=document.body.offsetTop;}
if(options.setLeft)target.style.left=(p[0]-delta[0]+options.offsetLeft)+'px';if(options.setTop)target.style.top=(p[1]-delta[1]+options.offsetTop)+'px';if(options.setWidth)target.style.width=source.offsetWidth+'px';if(options.setHeight)target.style.height=source.offsetHeight+'px';},absolutize:function(element){element=$(element);if(element.style.position=='absolute')return;Position.prepare();var offsets=Position.positionedOffset(element);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';},relativize:function(element){element=$(element);if(element.style.position=='relative')return;Position.prepare();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;}}
if(/Konqueror|Safari|KHTML/.test(navigator.userAgent)){Position.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[valueL,valueT];}}
Element.addMethods();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(element,{fontSize:(percent/100)+'em'});if(navigator.appVersion.indexOf('AppleWebKit')>0)window.scrollBy(0,0);}
Element.getOpacity=function(element){var opacity;if(opacity=Element.getStyle(element,'opacity'))
return parseFloat(opacity);if(opacity=(Element.getStyle(element,'filter')||'').match(/alpha\(opacity=(.*)\)/))
if(opacity[1])return parseFloat(opacity[1])/100;return 1.0;}
Element.setOpacity=function(element,value){element=$(element);if(value==1){Element.setStyle(element,{opacity:(/Gecko/.test(navigator.userAgent)&&!/Konqueror|Safari|KHTML/.test(navigator.userAgent))?0.999999:null});if(/MSIE/.test(navigator.userAgent))
Element.setStyle(element,{filter:Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'')});}else{if(value<0.00001)value=0;Element.setStyle(element,{opacity:value});if(/MSIE/.test(navigator.userAgent))
Element.setStyle(element,{filter:Element.getStyle(element,'filter').replace(/alpha\([^\)]*\)/gi,'')+'alpha(opacity='+value*100+')'});}}
Element.getInlineOpacity=function(element){return $(element).style.opacity||'';}
Element.childrenWithClassName=function(element,className,findFirst){var classNameRegExp=new RegExp("(^|\\s)"+className+"(\\s|$)");var results=$A($(element).getElementsByTagName('*'))[findFirst?'detect':'select'](function(c){return(c.className&&c.className.match(classNameRegExp));});if(!results)results=[];return results;}
Element.forceRerendering=function(element){try{element=$(element);var n=document.createTextNode(' ');element.appendChild(n);element.removeChild(n);}catch(e){}};Array.prototype.call=function(){var args=arguments;this.each(function(f){f.apply(this,args)});}
var Effect={tagifyText:function(element){var tagifyStyle='position:relative';if(/MSIE/.test(navigator.userAgent))tagifyStyle+=';zoom:1';element=$(element);$A(element.childNodes).each(function(child){if(child.nodeType==3){child.nodeValue.toArray().each(function(character){element.insertBefore(Builder.node('span',{style:tagifyStyle},character==' '?String.fromCharCode(160):character),child);});Element.remove(child);}});},multiple:function(element,effect){var elements;if(((typeof element=='object')||(typeof element=='function'))&&(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);}};var Effect2=Effect;Effect.Transitions={}
Effect.Transitions.linear=function(pos){return pos;}
Effect.Transitions.sinoidal=function(pos){return(-Math.cos(pos*Math.PI)/2)+0.5;}
Effect.Transitions.reverse=function(pos){return 1-pos;}
Effect.Transitions.flicker=function(pos){return((-Math.cos(pos*Math.PI)/4)+0.75)+Math.random()/4;}
Effect.Transitions.wobble=function(pos){return(-Math.cos(pos*Math.PI*(9*pos))/2)+0.5;}
Effect.Transitions.pulse=function(pos){return(Math.floor(pos*10)%2==0?(pos*10-Math.floor(pos*10)):1-(pos*10-Math.floor(pos*10)));}
Effect.Transitions.none=function(pos){return 0;}
Effect.Transitions.full=function(pos){return 1;}
Effect.ScopedQueue=Class.create();Object.extend(Object.extend(Effect.ScopedQueue.prototype,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=(typeof effect.options.queue=='string')?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'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),40);},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();this.effects.invoke('loop',timePos);}});Effect.Queues={instances:$H(),get:function(queueName){if(typeof queueName!='string')return queueName;if(!this.instances[queueName])
this.instances[queueName]=new Effect.ScopedQueue();return this.instances[queueName];}}
Effect.Queue=Effect.Queues.get('global');Effect.DefaultOptions={transition:Effect.Transitions.sinoidal,duration:1.0,fps:25.0,sync:false,from:0.0,to:1.0,delay:0.0,queue:'parallel'}
Effect.Base=function(){};Effect.Base.prototype={position:null,start:function(options){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.event('beforeStart');if(!this.options.sync)
Effect.Queues.get(typeof this.options.queue=='string'?'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.finishOn-this.startOn);var frame=Math.round(pos*this.options.fps*this.options.duration);if(frame>this.currentFrame){this.render(pos);this.currentFrame=frame;}}},render:function(pos){if(this.state=='idle'){this.state='running';this.event('beforeSetup');if(this.setup)this.setup();this.event('afterSetup');}
if(this.state=='running'){if(this.options.transition)pos=this.options.transition(pos);pos*=(this.options.to-this.options.from);pos+=this.options.from;this.position=pos;this.event('beforeUpdate');if(this.update)this.update(pos);this.event('afterUpdate');}},cancel:function(){if(!this.options.sync)
Effect.Queues.get(typeof this.options.queue=='string'?'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(){return'#<Effect:'+$H(this).inspect()+',options:'+$H(this.options).inspect()+'>';}}
Effect.Parallel=Class.create();Object.extend(Object.extend(Effect.Parallel.prototype,Effect.Base.prototype),{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.Opacity=Class.create();Object.extend(Object.extend(Effect.Opacity.prototype,Effect.Base.prototype),{initialize:function(element){this.element=$(element);if(/MSIE/.test(navigator.userAgent)&&(!this.element.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();Object.extend(Object.extend(Effect.Move.prototype,Effect.Base.prototype),{initialize:function(element){this.element=$(element);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+'px',top:this.options.y*position+this.originalTop+'px'});}});Effect.MoveBy=function(element,toTop,toLeft){return new Effect.Move(element,Object.extend({x:toLeft,y:toTop},arguments[3]||{}));};Effect.Scale=Class.create();Object.extend(Object.extend(Effect.Scale.prototype,Effect.Base.prototype),{initialize:function(element,percent){this.element=$(element)
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','%'].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+'px';if(this.options.scaleY)d.height=height+'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();Object.extend(Object.extend(Effect.Highlight.prototype,Effect.Base.prototype),{initialize:function(element){this.element=$(element);var options=Object.extend({startcolor:'#ffff99'},arguments[1]||{});this.start(options);},setup:function(){if(this.element.getStyle('display')=='none'){this.cancel();return;}
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+(Math.round(this._base[i]+(this._delta[i]*position)).toColorPart());}.bind(this))});},finish:function(){this.element.setStyle(Object.extend(this.oldStyle,{backgroundColor:this.options.restorecolor}));}});Effect.ScrollTo=Class.create();Object.extend(Object.extend(Effect.ScrollTo.prototype,Effect.Base.prototype),{initialize:function(element){this.element=$(element);this.start(arguments[1]||{});},setup:function(){Position.prepare();var offsets=Position.cumulativeOffset(this.element);if(this.options.offset)offsets[1]+=this.options.offset;var max=window.innerHeight?window.height-window.innerHeight:document.body.scrollHeight-
(document.documentElement.clientHeight?document.documentElement.clientHeight:document.body.clientHeight);this.scrollStart=Position.deltaY;this.delta=(offsets[1]>max?max:offsets[1])-this.scrollStart;},update:function(position){Position.prepare();window.scrollTo(Position.deltaX,this.scrollStart+(position*this.delta));}});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();effect.element.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);effect.element.show();}},arguments[1]||{});return new Effect.Opacity(element,options);}
Effect.Puff=function(element){element=$(element);var oldStyle={opacity:element.getInlineOpacity(),position:element.getStyle('position')};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){effect.effects[0].element.setStyle({position:'absolute'});},afterFinishInternal:function(effect){effect.effects[0].element.hide();effect.effects[0].element.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();effect.element.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();effect.element.setStyle({height:'0px'});effect.element.show();},afterFinishInternal:function(effect){effect.element.undoClipping();}},arguments[1]||{}));}
Effect.SwitchOff=function(element){element=$(element);var oldOpacity=element.getInlineOpacity();return new Effect.Appear(element,{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();effect.element.makeClipping();},afterFinishInternal:function(effect){effect.element.hide();effect.element.undoClipping();effect.element.undoPositioned();effect.element.setStyle({opacity:oldOpacity});}})}});}
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();effect.effects[0].element.undoPositioned();effect.effects[0].element.setStyle(oldStyle);}},arguments[1]||{}));}
Effect.Shake=function(element){element=$(element);var oldStyle={top:element.getStyle('top'),left:element.getStyle('left')};return new Effect.Move(element,{x:20,y:0,duration:0.05,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:-40,y:0,duration:0.1,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:40,y:0,duration:0.1,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:-40,y:0,duration:0.1,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:40,y:0,duration:0.1,afterFinishInternal:function(effect){new Effect.Move(effect.element,{x:-20,y:0,duration:0.05,afterFinishInternal:function(effect){effect.element.undoPositioned();effect.element.setStyle(oldStyle);}})}})}})}})}})}});}
Effect.SlideDown=function(element){element=$(element);element.cleanWhitespace();var oldInnerBottom=$(element.firstChild).getStyle('bottom');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.makePositioned();effect.element.firstChild.makePositioned();if(window.opera)effect.element.setStyle({top:''});effect.element.makeClipping();effect.element.setStyle({height:'0px'});effect.element.show();},afterUpdateInternal:function(effect){effect.element.firstChild.setStyle({bottom:(effect.dims[0]-effect.element.clientHeight)+'px'});},afterFinishInternal:function(effect){effect.element.undoClipping();if(/MSIE/.test(navigator.userAgent)){effect.element.undoPositioned();effect.element.firstChild.undoPositioned();}else{effect.element.firstChild.undoPositioned();effect.element.undoPositioned();}
effect.element.firstChild.setStyle({bottom:oldInnerBottom});}},arguments[1]||{}));}
Effect.SlideUp=function(element){element=$(element);element.cleanWhitespace();var oldInnerBottom=$(element.firstChild).getStyle('bottom');return new Effect.Scale(element,0,Object.extend({scaleContent:false,scaleX:false,scaleMode:'box',scaleFrom:100,restoreAfterFinish:true,beforeStartInternal:function(effect){effect.element.makePositioned();effect.element.firstChild.makePositioned();if(window.opera)effect.element.setStyle({top:''});effect.element.makeClipping();effect.element.show();},afterUpdateInternal:function(effect){effect.element.firstChild.setStyle({bottom:(effect.dims[0]-effect.element.clientHeight)+'px'});},afterFinishInternal:function(effect){effect.element.hide();effect.element.undoClipping();effect.element.firstChild.undoPositioned();effect.element.undoPositioned();effect.element.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(effect.element);},afterFinishInternal:function(effect){effect.element.hide(effect.element);effect.element.undoClipping(effect.element);}});}
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();effect.element.makeClipping();effect.element.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'});effect.effects[0].element.show();},afterFinishInternal:function(effect){effect.effects[0].element.undoClipping();effect.effects[0].element.undoPositioned();effect.effects[0].element.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();effect.effects[0].element.makeClipping();},afterFinishInternal:function(effect){effect.effects[0].element.hide();effect.effects[0].element.undoClipping();effect.effects[0].element.undoPositioned();effect.effects[0].element.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))};reverser.bind(transition);return new Effect.Opacity(element,Object.extend(Object.extend({duration:3.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(element);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();effect.element.undoClipping();effect.element.setStyle(oldStyle);}});}},arguments[1]||{}));};['setOpacity','getOpacity','getInlineOpacity','forceRerendering','setContentZoom','collectTextNodes','collectTextNodesIgnoreClass','childrenWithClassName'].each(function(f){Element.Methods[f]=Element[f];});Element.Methods.visualEffect=function(element,effect,options){s=effect.gsub(/_/,'-').camelize();effect_class=s.charAt(0).toUpperCase()+s.substring(1);new Effect[effect_class](element,options);return $(element);};Element.addMethods();var Autocompleter={}
Autocompleter.Base=function(){};Autocompleter.Base.prototype={baseInitialize:function(element,update,options){this.element=$(element);this.update=$(update);this.hasFocus=false;this.changed=false;this.active=false;this.index=0;this.entryCount=0;if(this.setOptions)
this.setOptions(options);else
this.options=options||{};this.options.paramName=this.options.paramName||this.element.name;this.options.tokens=this.options.tokens||[];this.options.frequency=this.options.frequency||0.4;this.options.minChars=this.options.minChars||1;this.options.onShow=this.options.onShow||function(element,update){$('mudidi').hide();if(!update.style.position||update.style.position=='absolute'){update.style.position='absolute';Position.clone(element,update,{setHeight:false,offsetTop:element.offsetHeight});}
Effect.Appear(update,{duration:0.15});};this.options.onHide=this.options.onHide||function(element,update){new Effect.Fade(update,{duration:0.15})};if(typeof(this.options.tokens)=='string')
this.options.tokens=new Array(this.options.tokens);this.observer=null;this.element.setAttribute('autocomplete','off');Element.hide(this.update);Event.observe(this.element,"blur",this.onBlur.bindAsEventListener(this));Event.observe(this.element,"keyup",this.onKeyPress.bindAsEventListener(this));Event.observe(this.element,"input",this.onKeyPress.bindAsEventListener(this));Event.observe(this.element,"propertychange",this.onKeyPress.bindAsEventListener(this));},show:function(){if(Element.getStyle(this.update,'display')=='none')this.options.onShow(this.element,this.update);if(!this.iefix&&(navigator.appVersion.indexOf('MSIE')>0)&&(navigator.userAgent.indexOf('Opera')<0)&&(Element.getStyle(this.update,'position')=='absolute')){new Insertion.After(this.update,'<iframe id="'+this.update.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.update.id+'_iefix');}
if(this.iefix)setTimeout(this.fixIEOverlapping.bind(this),50);},fixIEOverlapping:function(){Position.clone(this.update,this.iefix);this.iefix.style.zIndex=1;this.update.style.zIndex=2;Element.show(this.iefix);},hide:function(){this.stopIndicator();if(Element.getStyle(this.update,'display')!='none')this.options.onHide(this.element,this.update);if(this.iefix)Element.hide(this.iefix);},startIndicator:function(){if(this.options.indicator)Element.show(this.options.indicator);},stopIndicator:function(){if(this.options.indicator)Element.hide(this.options.indicator);},onKeyPress:function(event){if(this.active)
switch(event.keyCode){case Event.KEY_TAB:case Event.KEY_RETURN:this.selectEntry();Event.stop(event);case Event.KEY_ESC:this.hide();this.active=false;Event.stop(event);return;case Event.KEY_LEFT:case Event.KEY_RIGHT:return;case Event.KEY_UP:this.markPrevious();this.render();if(navigator.appVersion.indexOf('AppleWebKit')>0)Event.stop(event);return;case Event.KEY_DOWN:this.markNext();this.render();if(navigator.appVersion.indexOf('AppleWebKit')>0)Event.stop(event);return;}
else
if(event.keyCode==Event.KEY_TAB||event.keyCode==Event.KEY_RETURN||(navigator.appVersion.indexOf('AppleWebKit')>0&&event.keyCode==0))return;this.changed=true;this.hasFocus=true;if(this.observer)clearTimeout(this.observer);this.observer=setTimeout(this.onObserverEvent.bind(this),this.options.frequency*1000);},activate:function(){this.changed=false;this.hasFocus=true;this.getUpdatedChoices();},onHover:function(event){var element=Event.findElement(event,'LI');if(this.index!=element.autocompleteIndex)
{this.index=element.autocompleteIndex;this.render();}
Event.stop(event);},onClick:function(event){var element=Event.findElement(event,'LI');this.index=element.autocompleteIndex;this.selectEntry();this.hide();},onBlur:function(event){setTimeout(this.hide.bind(this),250);if($('mudidi')){setTimeout(function(){$('mudidi').hide();},100);}
this.hasFocus=false;this.active=false;},render:function(){if(this.entryCount>0){for(var i=0;i<this.entryCount;i++)
this.index==i?Element.addClassName(this.getEntry(i),"selected"):Element.removeClassName(this.getEntry(i),"selected");if(this.hasFocus){this.show();this.active=true;}}else{this.active=false;this.hide();}},markPrevious:function(){if(this.index>0)this.index--
else this.index=this.entryCount-1;},markNext:function(){if(this.index<this.entryCount-1)this.index++
else this.index=0;},getEntry:function(index){return this.update.firstChild.childNodes[index];},getCurrentEntry:function(){return this.getEntry(this.index);},selectEntry:function(){this.active=false;this.updateElement(this.getCurrentEntry());},updateElement:function(selectedElement){if(this.options.updateElement){this.options.updateElement(selectedElement);return;}
var value='';if(this.options.select){var nodes=document.getElementsByClassName(this.options.select,selectedElement)||[];if(nodes.length>0)value=Element.collectTextNodes(nodes[0],this.options.select);}else
value=Element.collectTextNodesIgnoreClass(selectedElement,'informal');var lastTokenPos=this.findLastToken();if(lastTokenPos!=-1){var newValue=this.element.value.substr(0,lastTokenPos+1);var whitespace=this.element.value.substr(lastTokenPos+1).match(/^\s+/);if(whitespace)
newValue+=whitespace[0];this.element.value=newValue+value;}else{if($('mudidi'))
{this.element.value=value.split(" ")[0];}
else
{this.element.value=value;}}
this.element.focus();if(this.options.afterUpdateElement)
this.options.afterUpdateElement(this.element,selectedElement);},updateChoices:function(choices){if(!this.changed&&this.hasFocus){this.update.innerHTML=choices;Element.cleanWhitespace(this.update);Element.cleanWhitespace(this.update.firstChild);if(this.update.firstChild&&this.update.firstChild.childNodes){this.entryCount=this.update.firstChild.childNodes.length;for(var i=0;i<this.entryCount;i++){var entry=this.getEntry(i);entry.autocompleteIndex=i;this.addObservers(entry);}}else{this.entryCount=0;}
this.stopIndicator();this.index=0;this.render();}},addObservers:function(element){Event.observe(element,"mouseover",this.onHover.bindAsEventListener(this));Event.observe(element,"click",this.onClick.bindAsEventListener(this));},onObserverEvent:function(){this.changed=false;if(this.getToken().length>=this.options.minChars){this.startIndicator();this.getUpdatedChoices();}else{this.active=false;this.hide();}},getToken:function(){var tokenPos=this.findLastToken();if(tokenPos!=-1)
var ret=this.element.value.substr(tokenPos+1).replace(/^\s+/,'').replace(/\s+$/,'');else
var ret=this.element.value;return/\n/.test(ret)?'':ret;},findLastToken:function(){var lastTokenPos=-1;for(var i=0;i<this.options.tokens.length;i++){var thisTokenPos=this.element.value.lastIndexOf(this.options.tokens[i]);if(thisTokenPos>lastTokenPos)
lastTokenPos=thisTokenPos;}
return lastTokenPos;}}
Ajax.Autocompleter=Class.create();Object.extend(Object.extend(Ajax.Autocompleter.prototype,Autocompleter.Base.prototype),{initialize:function(element,update,url,options){this.baseInitialize(element,update,options);this.options.asynchronous=true;this.options.onComplete=this.onComplete.bind(this);this.options.defaultParams=this.options.parameters||null;this.url=url;},getUpdatedChoices:function(){entry=encodeURIComponent(this.options.paramName)+'='+
encodeURIComponent(this.getToken());this.options.parameters=this.options.callback?this.options.callback(this.element,entry):entry;if(this.options.defaultParams)
this.options.parameters+='&'+this.options.defaultParams;new Ajax.Request(this.url,this.options);},onComplete:function(request){this.updateChoices(request.responseText);}});Autocompleter.Local=Class.create();Autocompleter.Local.prototype=Object.extend(new Autocompleter.Base(),{initialize:function(element,update,array,options){this.baseInitialize(element,update,options);this.options.array=array;},getUpdatedChoices:function(){this.updateChoices(this.options.selector(this));},setOptions:function(options){this.options=Object.extend({choices:10,partialSearch:true,partialChars:2,ignoreCase:true,fullSearch:false,selector:function(instance){var ret=[];var partial=[];var entry=instance.getToken();var count=0;for(var i=0;i<instance.options.array.length&&ret.length<instance.options.choices;i++){var elem=instance.options.array[i];var foundPos=instance.options.ignoreCase?elem.toLowerCase().indexOf(entry.toLowerCase()):elem.indexOf(entry);while(foundPos!=-1){if(foundPos==0&&elem.length!=entry.length){ret.push("<li><strong>"+elem.substr(0,entry.length)+"</strong>"+
elem.substr(entry.length)+"</li>");break;}else if(entry.length>=instance.options.partialChars&&instance.options.partialSearch&&foundPos!=-1){if(instance.options.fullSearch||/\s/.test(elem.substr(foundPos-1,1))){partial.push("<li>"+elem.substr(0,foundPos)+"<strong>"+
elem.substr(foundPos,entry.length)+"</strong>"+elem.substr(foundPos+entry.length)+"</li>");break;}}
foundPos=instance.options.ignoreCase?elem.toLowerCase().indexOf(entry.toLowerCase(),foundPos+1):elem.indexOf(entry,foundPos+1);}}
if(partial.length)
ret=ret.concat(partial.slice(0,instance.options.choices-ret.length))
return"<ul>"+ret.join('')+"</ul>";}},options||{});}});Field.scrollFreeActivate=function(field){setTimeout(function(){Field.activate(field);},1);}
Ajax.InPlaceEditor=Class.create();Ajax.InPlaceEditor.defaultHighlightColor="#FFFF99";Ajax.InPlaceEditor.prototype={initialize:function(element,url,options){this.url=url;this.element=$(element);this.options=Object.extend({okButton:true,okText:"ok",cancelLink:true,cancelText:"cancel",savingText:"Saving...",clickToEditText:"Click to edit",okText:"ok",rows:1,onComplete:function(transport,element){new Effect.Highlight(element,{startcolor:this.options.highlightcolor});},onFailure:function(transport){alert("Error communicating with the server: "+transport.responseText.stripTags());},callback:function(form){return Form.serialize(form);},handleLineBreaks:true,loadingText:'Loading...',savingClassName:'inplaceeditor-saving',loadingClassName:'inplaceeditor-loading',formClassName:'inplaceeditor-form',highlightcolor:Ajax.InPlaceEditor.defaultHighlightColor,highlightendcolor:"#FFFFFF",externalControl:null,submitOnBlur:false,ajaxOptions:{},evalScripts:false},options||{});if(!this.options.formId&&this.element.id){this.options.formId=this.element.id+"-inplaceeditor";if($(this.options.formId)){this.options.formId=null;}}
if(this.options.externalControl){this.options.externalControl=$(this.options.externalControl);}
this.originalBackground=Element.getStyle(this.element,'background-color');if(!this.originalBackground){this.originalBackground="transparent";}
this.element.title=this.options.clickToEditText;this.onclickListener=this.enterEditMode.bindAsEventListener(this);this.mouseoverListener=this.enterHover.bindAsEventListener(this);this.mouseoutListener=this.leaveHover.bindAsEventListener(this);Event.observe(this.element,'click',this.onclickListener);Event.observe(this.element,'mouseover',this.mouseoverListener);Event.observe(this.element,'mouseout',this.mouseoutListener);if(this.options.externalControl){Event.observe(this.options.externalControl,'click',this.onclickListener);Event.observe(this.options.externalControl,'mouseover',this.mouseoverListener);Event.observe(this.options.externalControl,'mouseout',this.mouseoutListener);}},enterEditMode:function(evt){if(this.saving)return;if(this.editing)return;this.editing=true;this.onEnterEditMode();if(this.options.externalControl){Element.hide(this.options.externalControl);}
Element.hide(this.element);this.createForm();this.element.parentNode.insertBefore(this.form,this.element);Field.scrollFreeActivate(this.editField);if(evt){Event.stop(evt);}
return false;},createForm:function(){this.form=document.createElement("form");this.form.id=this.options.formId;Element.addClassName(this.form,this.options.formClassName)
this.form.onsubmit=this.onSubmit.bind(this);this.createEditField();if(this.options.textarea){var br=document.createElement("br");this.form.appendChild(br);}
if(this.options.okButton){okButton=document.createElement("input");okButton.type="submit";okButton.value=this.options.okText;okButton.className='editor_ok_button';this.form.appendChild(okButton);}
if(this.options.cancelLink){cancelLink=document.createElement("a");cancelLink.href="#";cancelLink.appendChild(document.createTextNode(this.options.cancelText));cancelLink.onclick=this.onclickCancel.bind(this);cancelLink.className='editor_cancel';this.form.appendChild(cancelLink);}},hasHTMLLineBreaks:function(string){if(!this.options.handleLineBreaks)return false;return string.match(/<br/i)||string.match(/<p>/i);},convertHTMLLineBreaks:function(string){return string.replace(/<br>/gi,"\n").replace(/<br\/>/gi,"\n").replace(/<\/p>/gi,"\n").replace(/<p>/gi,"");},createEditField:function(){var text;if(this.options.loadTextURL){text=this.options.loadingText;}else{text=this.getText();}
var obj=this;if(this.options.rows==1&&!this.hasHTMLLineBreaks(text)){this.options.textarea=false;var textField=document.createElement("input");textField.obj=this;textField.type="text";textField.name="value";textField.value=text;textField.style.backgroundColor=this.options.highlightcolor;textField.className='editor_field';var size=this.options.size||this.options.cols||0;if(size!=0)textField.size=size;if(this.options.submitOnBlur)
textField.onblur=this.onSubmit.bind(this);this.editField=textField;}else{this.options.textarea=true;var textArea=document.createElement("textarea");textArea.obj=this;textArea.name="value";textArea.value=this.convertHTMLLineBreaks(text);textArea.rows=this.options.rows;textArea.cols=this.options.cols||40;textArea.className='editor_field';if(this.options.submitOnBlur)
textArea.onblur=this.onSubmit.bind(this);this.editField=textArea;}
if(this.options.loadTextURL){this.loadExternalText();}
this.form.appendChild(this.editField);},getText:function(){return this.element.innerHTML;},loadExternalText:function(){Element.addClassName(this.form,this.options.loadingClassName);this.editField.disabled=true;new Ajax.Request(this.options.loadTextURL,Object.extend({asynchronous:true,onComplete:this.onLoadedExternalText.bind(this)},this.options.ajaxOptions));},onLoadedExternalText:function(transport){Element.removeClassName(this.form,this.options.loadingClassName);this.editField.disabled=false;this.editField.value=transport.responseText.stripTags();},onclickCancel:function(){this.onComplete();this.leaveEditMode();return false;},onFailure:function(transport){this.options.onFailure(transport);if(this.oldInnerHTML){this.element.innerHTML=this.oldInnerHTML;this.oldInnerHTML=null;}
return false;},onSubmit:function(){var form=this.form;var value=this.editField.value;this.onLoading();if(this.options.evalScripts){new Ajax.Request(this.url,Object.extend({parameters:this.options.callback(form,value),onComplete:this.onComplete.bind(this),onFailure:this.onFailure.bind(this),asynchronous:true,evalScripts:true},this.options.ajaxOptions));}else{new Ajax.Updater({success:this.element,failure:null},this.url,Object.extend({parameters:this.options.callback(form,value),onComplete:this.onComplete.bind(this),onFailure:this.onFailure.bind(this)},this.options.ajaxOptions));}
if(arguments.length>1){Event.stop(arguments[0]);}
return false;},onLoading:function(){this.saving=true;this.removeForm();this.leaveHover();this.showSaving();},showSaving:function(){this.oldInnerHTML=this.element.innerHTML;this.element.innerHTML=this.options.savingText;Element.addClassName(this.element,this.options.savingClassName);this.element.style.backgroundColor=this.originalBackground;Element.show(this.element);},removeForm:function(){if(this.form){if(this.form.parentNode)Element.remove(this.form);this.form=null;}},enterHover:function(){if(this.saving)return;this.element.style.backgroundColor=this.options.highlightcolor;if(this.effect){this.effect.cancel();}
Element.addClassName(this.element,this.options.hoverClassName)},leaveHover:function(){if(this.options.backgroundColor){this.element.style.backgroundColor=this.oldBackground;}
Element.removeClassName(this.element,this.options.hoverClassName)
if(this.saving)return;this.effect=new Effect.Highlight(this.element,{startcolor:this.options.highlightcolor,endcolor:this.options.highlightendcolor,restorecolor:this.originalBackground});},leaveEditMode:function(){Element.removeClassName(this.element,this.options.savingClassName);this.removeForm();this.leaveHover();this.element.style.backgroundColor=this.originalBackground;Element.show(this.element);if(this.options.externalControl){Element.show(this.options.externalControl);}
this.editing=false;this.saving=false;this.oldInnerHTML=null;this.onLeaveEditMode();},onComplete:function(transport){this.leaveEditMode();this.options.onComplete.bind(this)(transport,this.element);},onEnterEditMode:function(){},onLeaveEditMode:function(){},dispose:function(){if(this.oldInnerHTML){this.element.innerHTML=this.oldInnerHTML;}
this.leaveEditMode();Event.stopObserving(this.element,'click',this.onclickListener);Event.stopObserving(this.element,'mouseover',this.mouseoverListener);Event.stopObserving(this.element,'mouseout',this.mouseoutListener);if(this.options.externalControl){Event.stopObserving(this.options.externalControl,'click',this.onclickListener);Event.stopObserving(this.options.externalControl,'mouseover',this.mouseoverListener);Event.stopObserving(this.options.externalControl,'mouseout',this.mouseoutListener);}}};Ajax.InPlaceCollectionEditor=Class.create();Object.extend(Ajax.InPlaceCollectionEditor.prototype,Ajax.InPlaceEditor.prototype);Object.extend(Ajax.InPlaceCollectionEditor.prototype,{createEditField:function(){if(!this.cached_selectTag){var selectTag=document.createElement("select");var collection=this.options.collection||[];var optionTag;collection.each(function(e,i){optionTag=document.createElement("option");optionTag.value=(e instanceof Array)?e[0]:e;if(this.options.value==optionTag.value)optionTag.selected=true;optionTag.appendChild(document.createTextNode((e instanceof Array)?e[1]:e));selectTag.appendChild(optionTag);}.bind(this));this.cached_selectTag=selectTag;}
this.editField=this.cached_selectTag;if(this.options.loadTextURL)this.loadExternalText();this.form.appendChild(this.editField);this.options.callback=function(form,value){return"value="+encodeURIComponent(value);}}});Form.Element.DelayedObserver=Class.create();Form.Element.DelayedObserver.prototype={initialize:function(element,delay,callback){this.delay=delay||0.5;this.element=$(element);this.callback=callback;this.timer=null;this.lastValue=$F(this.element);Event.observe(this.element,'keyup',this.delayedListener.bindAsEventListener(this));},delayedListener:function(event){if(this.lastValue==$F(this.element))return;if(this.timer)clearTimeout(this.timer);this.timer=setTimeout(this.onTimerEvent.bind(this),this.delay*1000);this.lastValue=$F(this.element);},onTimerEvent:function(){this.timer=null;this.callback(this.element,$F(this.element));}};Browser={ie:"6",msie:"Microsoft Internet Explorer",firefox:"Firefox",checkBrowser:function(){if(navigator.appName=="Microsoft Internet Explorer"){if(parseInt(navigator.appVersion.split(" ")[3])<this.ie)
return window.confirm("Warning:browser version is low");else
return true;}
else if(navigator.userAgent.indexOf(this.firefox)!=-1)
return true
return window.confirm("Warning: your browser is not supported well")},warningLoginMessage:function(element,info){if(navigator.appName!=this.msie&&navigator.userAgent.indexOf(this.firefox)==-1){var element=$(element);var content=element.innerHTML+info;element.innerHTML=content;element.style.color="red";}},version:function(){return navigator.appName;}}
Tabs={active:function(ulId,tab){this.deactiveAll(ulId);Element.addClassName(tab,'active');},deactiveAll:function(ulId){var tabs=Element.descendants(ulId);tabs.each(function(e){Element.removeClassName(e,'active');});}}
xanadu=Class.create();Object.extend(xanadu.prototype,{initialize:function(){if($('search-main')&&$('search-main-inner')){this.smcb=Element.getStyle('search-main','background-image');this.smicb=Element.getStyle('search-main-inner','background-image');this.init_checkboxes();var div=$("country_div");if(div!=null){div.style.display="none";div.style.position="absolute";div.style.left="180px";div.style.top="65px";div.style.width="100px";div.style.zIndex="9";}}},product_summary:function(){$('product_info').removeClassName('active');$('product_summary').addClassName('active');$('detail').hide();$('summary').show();},product_info:function(){$('product_summary').removeClassName('active');$('product_info').addClassName('active');$('detail').show();$('summary').hide();},search:function(Id){Tabs.active('tabs',Id);if(Id=='simple'){new Effect.Fade('advanced_search');}else{new Effect.Appear('advanced_search');}},information:function(){if(!Element.visible('info_panel_contents')){new Effect.toggle('info_panel_contents','slide');}else{Element.hide('detail');Element.show('detail_loader');}
if($('order_details')){if(!Element.visible('order_details')){new Effect.Appear('order_details');}}},info_complete:function(){Element.hide('detail_loader');Element.show('info_panel_contents');},searchover:function(){Element.setStyle('search-main',{background:'transparent url(/images/bg-search-over.gif) no-repeat scroll 0pt 100%;'});Element.setStyle('search-main-inner',{background:'transparent url(/images/bg-search-over.gif) no-repeat scroll 0pt 0%;'});return false;},searchout:function(){Element.setStyle('search-main',{background:'transparent '+this.smcb+' no-repeat scroll 0pt 100%;'});Element.setStyle('search-main-inner',{background:'transparent '+this.smicb+' no-repeat scroll 0pt 0%;'});return false;},init_checkboxes:function(){var inputFields=document.getElementsByTagName("span");var checkboxIndex=0;for(var inputIndex=0;inputIndex<inputFields.length;inputIndex++){if(inputFields[inputIndex].className.indexOf("cbStyled")==0){var styleType="";styleType=inputFields[inputIndex].className.replace("cbStyled ","");if(styleType=="cbStyled"){styleType="";}
inputFields[inputIndex].className="checkbox"+styleType;var inputCurrent=inputFields[inputIndex].getElementsByTagName("input").item(0);if(inputCurrent.getAttribute("type")=="checkbox"){inputCurrent.className="inputhidden";if(inputCurrent.id==null)inputCurrent.setAttribute("id","StyledCheckbox"+checkboxIndex);if(navigator.appName.indexOf("Internet Explorer")>0||navigator.userAgent.indexOf("Netscape")>0){var inputHTML=inputFields[inputIndex].innerHTML;var styledHTML="<a";styledHTML+=" tabindex=\""+inputIndex+"\"";styledHTML+=" id=\"styled_cb_"+inputCurrent.id+"\"";if(inputCurrent.hasAttribute){if(inputCurrent.hasAttribute("title")){styledHTML+=" title=\""+inputCurrent.getAttribute("title")+"\"";}}
if(inputCurrent.checked){styledHTML+=" class=\"checkboxchecked"+styleType+"\"";}else{styledHTML+=" class=\"checkboxunchecked"+styleType+"\"";}
styledHTML+=" onClick=\"Xanadu.toggleCheckbox(this,'','"+inputCurrent.id+"');return false;\""
styledHTML+=" onKeyPress=\"return Xanadu.toggleCheckbox(this,event.keyCode,'"+inputCurrent.id+"');\""
if(navigator.userAgent.indexOf("Netscape")>0){styledHTML+="><img src=\"formStyle.gif\" /></a>";}else{styledHTML+="></a>";}
inputFields[inputIndex].innerHTML=inputHTML+styledHTML;inputFields[inputIndex].className="Radiobox"+styleType;}
else{var styledCheckbox=document.createElement("a");styledCheckbox.setAttribute("href","#");styledCheckbox.setAttribute("id","styled_cb_"+inputCurrent.id);if(inputCurrent.hasAttribute){if(inputCurrent.hasAttribute("title")){styledCheckbox.setAttribute("title",inputCurrent.getAttribute("title"));}}
styledCheckbox.setAttribute("onClick","Xanadu.toggleCheckbox(this,'','"+inputCurrent.id+"');return false;");styledCheckbox.setAttribute("onKeyPress","return Xanadu.toggleCheckbox(this,event.keyCode,'"+inputCurrent.id+"');");if(inputCurrent.checked){styledCheckbox.className="checkboxchecked"+styleType;}else{styledCheckbox.className="checkboxunchecked"+styleType;}
inputFields[inputIndex].appendChild(styledCheckbox);}
checkboxIndex++;}}}},toggleCheckbox:function(cbId,cbKey,ffId){if(cbKey==0||cbKey==32){var cbFF=$(ffId);var cbFFValue=cbFF.checked;if(cbId.className.indexOf("checkboxchecked")<0){var checkBoxType=cbId.className.replace("checkboxunchecked","");if(cbFF.checked!=true){clickObj(cbFF);if(cbFF.checked!=true)cbFF.checked=true;}
cbId.className="checkboxchecked"+checkBoxType;}else{var checkBoxType=cbId.className.replace("checkboxchecked","");if(cbFF.checked!=false){clickObj(cbFF);if(cbFF.checked!=false)cbFF.checked=false;}
cbId.className="checkboxunchecked"+checkBoxType;}
return false;}}});function clickObj(o){xanadu_fireEvent("click",o);}
function xanadu_fireEvent(eve,o){if(typeof(o)=="string")o=document.getElementById(o);if(document.all&&typeof(document.all)=="object")
{o.click();}
else
{var e=document.createEvent('MouseEvent');e.initEvent(eve,false,false);o.dispatchEvent(e);}}
if(typeof Effect=='undefined'){throw("lightWindow.js requires including script.aculo.us' effects.js library!");}
var lightWindow=Class.create();lightWindow.prototype={element:null,contentToFetch:null,boxOverFlow:'hidden',retroIE:null,windowType:null,animating:false,scrollX:null,scrollY:null,imageArray:[],preloadImage:null,activeGallery:null,activeImage:0,galleryDirection:null,showDataToggle:false,galleryToggle:false,showTitleToggle:true,initialize:function(options){this.options=Object.extend({resizeSpeed:11,cushion:10,dimensions:{image:{height:100,width:100},page:{height:50,width:100},inline:{height:50,width:100},media:{height:50,width:100},external:{height:50,width:100},dataHeight:40,titleHeight:25},classNames:{standard:'lWOn',action:'lWAction'},fileTypes:{page:['asp','aspx','cgi','htm','html','pl','php4','php3','php','php5','phtml','rhtml','shtml','txt','vbs','rb'],media:['aif','aiff','asf','avi','divx','m1v','m2a','m2v','m3u','mid','midi','mov','moov','movie','mp2','mp3','mpa','mpa','mpe','mpeg','mpg','mpg','mpga','pps','qt','rm','ram','swf','viv','vivo','wav'],image:['bmp','gif','jpg','png','tiff']},mimeTypes:{avi:'video/avi',aif:'audio/aiff',aiff:'audio/aiff',gif:'image/gif',bmp:'image/bmp',jpeg:'image/jpeg',m1v:'video/mpeg',m2a:'audio/mpeg',m2v:'video/mpeg',m3u:'audio/x-mpequrl',mid:'audio/x-midi',midi:'audio/x-midi',mjpg:'video/x-motion-jpeg',moov:'video/quicktime',mov:'video/quicktime',movie:'video/x-sgi-movie',mp2:'audio/mpeg',mp3:'audio/mpeg3',mpa:'audio/mpeg',mpa:'video/mpeg',mpe:'video/mpeg',mpeg:'video/mpeg',mpg:'audio/mpeg',mpg:'video/mpeg',mpga:'audio/mpeg',pdf:'application/pdf',png:'image/png',pps:'application/mspowerpoint',qt:'video/quicktime',ram:'audio/x-pn-realaudio-plugin',rm:'application/vnd.rn-realmedia',swf:'application/x-shockwave-flash',tiff:'image/tiff',viv:'video/vivo',vivo:'video/vivo',wav:'audio/wav'},loadingDialog:{message:'Loading',image:'/images/ajax-loading.gif',options:'<a onclick="javascript: lw.deactivate();">Cancel</a>',delay:3.0},authorLead:'by ',galleryTab:{name:'Galleries',height:20,visible:true},overlay:{color:'#fff',opacity:70,image:'/images/black-70.png'},formMethod:'get',hideFlash:true,showTitleBar:true},options||{})
this.duration=((11-this.options.resizeSpeed)*0.15);this.setupLinks();this.addLightWindowMarkup(false);this.setupDimensions(true);},setupLinks:function(){var links=$$('.'+this.options.classNames.standard);links.each(function(link){if(this.fileType(link.href)=='image'){if(gallery=this.getGalleryInfo(link.rel)){if(!this.imageArray[gallery[0]])this.imageArray[gallery[0]]=new Array();if(!this.imageArray[gallery[0]][gallery[1]])this.imageArray[gallery[0]][gallery[1]]=new Array();if(link.getAttribute('tip').length>0){title=link.getAttribute('tip');alert(title);}else{title=link.getAttribute('title')}
this.imageArray[gallery[0]][gallery[1]].push(new Array(link.href,title,link.getAttribute('caption'),link.getAttribute('author'),link.getAttribute('rel'),link.getAttribute('params')));}}
var url=link.getAttribute('href');if(link.href.indexOf('?')>-1)url=url.substring(0,url.indexOf('?'));container=url.substring(url.indexOf('#')+1);if($(container))$(container).style.display='none';Event.observe(link,'click',this.activate.bindAsEventListener(this,link));link.onclick=function(){return false;};}.bind(this));},initializeWindow:function(id){var link=$(id);if(this.fileType(link.href)=='image'){if(gallery=this.getGalleryInfo(link.rel)){if(!this.imageArray[gallery[0]])this.imageArray[gallery[0]]=new Array();if(!this.imageArray[gallery[0]][gallery[1]])this.imageArray[gallery[0]][gallery[1]]=new Array();this.imageArray[gallery[0]][gallery[1]].push(new Array(link.href,link.getAttribute('title'),link.getAttribute('caption'),link.getAttribute('author'),link.getAttribute('rel'),link.getAttribute('params')));}}
var url=link.getAttribute('href');if(link.href.indexOf('?')>-1)url=url.substring(0,url.indexOf('?'));container=url.substring(url.indexOf('#')+1);if($(container))$(container).style.display='none';Event.observe(link,'click',this.activate.bindAsEventListener(this,link));link.onclick=function(){return false;};},addLightWindowMarkup:function(rebuild){if(!rebuild){var overlay=document.createElement('div');overlay.setAttribute('id','overlay');if(this.checkBrowser('firefox')){overlay.style.backgroundImage='url('+this.options.overlay.image+')';overlay.style.backgroundRepeat='repeat';}else{overlay.style.backgroundColor=this.options.overlay.color;overlay.style.MozOpacity='.'+this.options.overlay.opacity;overlay.style.opacity='.'+this.options.overlay.opacity;overlay.style.filter='alpha(opacity='+this.options.overlay.opacity+')';}
var lw=document.createElement('div');lw.setAttribute('id','lightWindow');}else{var lw=$('lightWindow');}
if(this.options.showTitleBar)lw=this.addTitleBarMarkup(lw);var lwc=document.createElement('div');lwc.setAttribute('id','lightWindow-contents');var lwcc=document.createElement('div');lwcc.setAttribute('id','lightWindow-contents-container');lwc.appendChild(lwcc);var lwl=document.createElement('div');lwl.setAttribute('id','lightWindow-loading');var lwi=document.createElement('img');lwi.setAttribute('src',this.options.loadingDialog.image);lwl.appendChild(lwi);var lwld=document.createElement('span');lwld.setAttribute('id','lightWindow-loading-message');lwld.innerHTML+=this.options.loadingDialog.message;lwl.appendChild(lwld);var lwlo=document.createElement('span');lwlo.setAttribute('id','lightWindow-loading-options');lwlo.setAttribute('style','display:none;');lwlo.innerHTML+=this.options.loadingDialog.options;lwl.appendChild(lwlo);lwc.appendChild(lwl);lw.appendChild(lwc);if(!rebuild){var body=document.getElementsByTagName('body')[0];body.appendChild(overlay);body.appendChild(lw);Event.observe(overlay,'click',this.deactivate.bindAsEventListener(this),false);overlay.onclick=function(){return false;};}
this.addDataWindowMarkup();this.actions('#lightWindow-loading-options');},addTitleBarMarkup:function(lw){var lwdt=document.createElement('div');lwdt.setAttribute('id','lightWindow-title-bar');lwdt.style.visibility='hidden';var lwdtt=document.createElement('div');lwdtt.setAttribute('id','lightWindow-title-bar-title');lwdt.appendChild(lwdtt);var lwdtc=document.createElement('div');lwdtc.setAttribute('id','lightWindow-title-bar-close');var lwdtca=document.createElement('a');lwdtca.setAttribute('id','lightWindow-title-bar-close-link');lwdtca.innerHTML='close';Event.observe(lwdtca,'click',this.deactivate.bindAsEventListener(this));lwdtca.onclick=function(){return false;};lwdtc.appendChild(lwdtca);lwdt.appendChild(lwdtc);lw.appendChild(lwdt);return lw;},addDataWindowMarkup:function(){var lw=$('lightWindow');var lwd=document.createElement('div');lwd.setAttribute('id','lightWindow-data');lwd.style.display='none';var lwds=document.createElement('div');lwds.setAttribute('id','lightWindow-data-slide');if(!this.options.showTitleBar){var lwdt=document.createElement('div');lwdt.setAttribute('id','lightWindow-data-title');lwds.appendChild(lwdt);}
var lwdc=document.createElement('div');lwdc.setAttribute('id','lightWindow-data-caption');lwds.appendChild(lwdc);var lwda=document.createElement('div');lwda.setAttribute('id','lightWindow-data-author');lwds.appendChild(lwda);var lwdi=document.createElement('div');lwdi.setAttribute('id','lightWindow-data-image');lwds.appendChild(lwdi);lwd.appendChild(lwds);lw.appendChild(lwd);},addPhotoWindowMarkup:function(){var lwc=$('lightWindow-contents');var lwpc=document.createElement('div');lwpc.setAttribute('id','lightWindow-photo-container');lwpc.style.display='none';if(images=parseInt(this.getParameter('lWShowImages'))){for(var x=0;x<images;x++){lwp=document.createElement('img');lwp.setAttribute('id','lightWindow-photo-'+x);lwpc.appendChild(lwp);}}else{lwp=document.createElement('img');lwp.setAttribute('id','lightWindow-photo-0');lwpc.appendChild(lwp);}
lwps=document.createElement('img');lwps.setAttribute('id','lightWindow-photo-sizer');lwps.style.display='none';lwps.style.height='1px';lwpc.appendChild(lwps);lwc.appendChild(lwpc);},addGalleryWindowMarkup:function(){var lwpc=$('lightWindow-photo-container');var lwpg=document.createElement('div');lwpg.setAttribute('id','lightWindow-photo-galleries');lwpg.style.display='none';if(!this.options.galleryTab.visible)lwpg.style.visibility='hidden';var lwptc=document.createElement('div');lwptc.setAttribute('id','lightWindow-photo-tab-container');var lwpgt=document.createElement('a');lwpgt.setAttribute('id','lightWindow-photo-galleries-tab');lwpgt.className='up';lwpgt.innerHTML=this.options.galleryTab.name;Event.observe(lwpgt,'click',this.getGallery.bindAsEventListener(this));lwpgt.onclick=function(){return false;};lwptc.appendChild(lwpgt);lwpg.appendChild(lwptc);var lwpgl=document.createElement('div');lwpgl.setAttribute('id','lightWindow-photo-galleries-list');lwpg.appendChild(lwpgl);lwpc.appendChild(lwpg);},activate:function(e,link){link.blur();this.element=link;this.element.title=link.getAttribute('title');this.element.author=link.getAttribute('author');this.element.caption=link.getAttribute('caption');this.element.rel=link.getAttribute('rel');this.element.params=this.element.getAttribute('params');this.windowType=this.fileType(this.contentToFetch=link.href);if(this.element.caption||this.element.author)this.showDataToggle=true;if(this.options.showTitleBar&&this.element.title)this.showTitleToggle=true;else if(!this.options.showTitleBar&&this.element.title)this.showDataToggle=true;if(this.getGalleryInfo(this.element.rel))this.galleryToggle=true;this.prepareIE(true);this.toggleTroubleElements('hidden',false);this.displayLightWindow(true);this.setupDimensions(true);this.monitorKeyboard(true);this.loadInfo();},deactivate:function(){var queue=Effect.Queues.get('lightWindowAnimation').each(function(e){e.cancel();});queue=Effect.Queues.get('lightWindowAnimation-loading').each(function(e){e.cancel();});if($('lightWindow-iframe'))Element.remove($('lightWindow-iframe'));Element.remove($('lightWindow-contents'));if($('lightWindow-data'))Element.remove($('lightWindow-data'));if($('lightWindow-title-bar'))Element.remove($('lightWindow-title-bar'));this.displayLightWindow(false);this.boxOverFlow='hidden';this.prepareIE(false);this.setStatus(false);this.showDataToggle=this.galleryToggle=this.showTitleToggle=false;this.addLightWindowMarkup(true);this.setupDimensions(true);this.monitorKeyboard(false);this.toggleTroubleElements('visible',false);},actions:function(prefix){if(prefix)links=$$(prefix+' .'+this.options.classNames.action);else links=$$('.'+this.options.classNames.action);links.each(function(link){Event.observe(link,'click',this[link.rel].bindAsEventListener(this,link),false);link.onclick=function(){return false;};}.bind(this));},setStatus:function(status){this.animating=status;if(this.showTitleToggle&&!status&&$('lightWindow-title-bar')){$('lightWindow-title-bar').setStyle({visibility:'visible'});}},setupDataDimensions:function(){if($('lightWindow-contents')&&$('lightWindow-data')&&this.showDataToggle){$('lightWindow-data').setStyle({height:this.options.dimensions.dataHeight+'px',width:(parseFloat($('lightWindow-contents').style.width)+this.options.cushion*2)+'px'});$('lightWindow-data-slide').setStyle({height:this.options.dimensions.dataHeight+'px',overflow:'hidden'});}
if(this.showTitleToggle&&$('lightWindow-title-bar')){$('lightWindow-title-bar').setStyle({height:this.options.dimensions.titleHeight+'px',width:(parseFloat($('lightWindow-contents').style.width)+this.options.cushion*2)+'px'});}},setupDimensions:function(reset){if(this.showDataToggle||(this.galleryToggle&&this.options.galleryTab.visible))var adjust=this.options.dimensions.dataHeight;else var adjust=0;var originalHeight,originalWidth,titleHeight;switch(this.windowType){case'page':originalHeight=this.options.dimensions.page.height;originalWidth=this.options.dimensions.page.width;break;case'image':originalHeight=this.options.dimensions.image.height;originalWidth=this.options.dimensions.image.width;break;case'media':originalHeight=this.options.dimensions.media.height;originalWidth=this.options.dimensions.media.width;break;case'external':originalHeight=this.options.dimensions.external.height;originalWidth=this.options.dimensions.external.width;break;case'inline':originalHeight=this.options.dimensions.inline.height;originalWidth=this.options.dimensions.inline.width;break;default:originalHeight=this.options.dimensions.page.height;originalWidth=this.options.dimensions.page.width;break;}
if(this.showTitleToggle){titleHeight=this.options.dimensions.titleHeight;}else{titleHeight=0;}
if(reset){if(parseFloat($('lightWindow-contents').style.height)!=originalHeight){$('lightWindow-contents').setStyle({top:titleHeight+'px',width:(originalWidth+this.options.cushion)+'px',height:(originalHeight+this.options.cushion)+'px'});}else{$('lightWindow-contents').setStyle({top:'0px',width:(originalWidth+this.options.cushion)+'px',height:(originalHeight+this.options.cushion)+'px'});}
$('lightWindow').setStyle({padding:'0 0 0 0',width:'0px',height:'0px',margin:(-(((originalHeight+this.options.cushion*3)/2)+(adjust/2)+(titleHeight/2)))+'px 0 0 '+(-((originalWidth+this.options.cushion*3)/2))+'px'});}else{$('lightWindow').setStyle({padding:parseFloat($('lightWindow-contents').style.height)+2*this.options.cushion+titleHeight+'px 0 0 0',width:'0px',height:'0px',margin:(-(((parseFloat($('lightWindow-contents').style.height)+this.options.cushion*2)/2)+(adjust/2)+(titleHeight/2)))+'px 0 0 '+(-((parseFloat($('lightWindow-contents').style.width)+this.options.cushion*2)/2))+'px'});if(parseFloat($('lightWindow-contents').style.height)!=originalHeight){$('lightWindow-contents').setStyle({top:titleHeight+'px',left:'0px'});}}},setupOverlay:function(){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;}
var windowWidth,windowHeight;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;}
$('overlay').style.height=pageHeight;$('overlay').style.width=pageWidth;},displayLightWindow:function(display){if(display){$('overlay').style.display=$('lightWindow').style.display=$('lightWindow-contents').style.display='block';}else{$('overlay').style.display=$('lightWindow').style.display='none';}},checkBrowser:function(type){var detect=navigator.userAgent.toLowerCase();var version=parseInt(navigator.appVersion);var place=detect.indexOf(type)+1;return place;},prepareIE:function(setup){if(this.checkBrowser('msie')){var height,overflowX,overflowY;if(setup){this.getScroll();this.setScroll(0,0);var height='100%';}else{var height='auto';}
var body=document.getElementsByTagName('body')[0];var html=document.getElementsByTagName('html')[0];html.style.height=body.style.height=height;html.style.margin=body.style.margin='0';this.setupOverlay();if(!setup)this.setScroll(this.scrollX,this.scrollY);}},toggleTroubleElements:function(visibility,content){if(content)var selects=$('lightWindow-contents').getElementsByTagName('select');else var selects=document.getElementsByTagName('select');for(var i=0;i<selects.length;i++){selects[i].style.visibility=visibility;}
if(!content){if(this.options.hideFlash){var objects=document.getElementsByTagName('object');for(i=0;i!=objects.length;i++){objects[i].style.visibility=visibility;}
var embeds=document.getElementsByTagName('embed');for(i=0;i!=embeds.length;i++){embeds[i].style.visibility=visibility;}}
var iframes=document.getElementsByTagName('iframe');for(i=0;i!=iframes.length;i++){iframes[i].style.visibility=visibility;}}},getScroll:function(){if(typeof(window.pageYOffset)=='number'){this.scrollY=window.pageYOffset;this.scrollX=window.pageXOffset;}else if(document.body&&(document.body.scrollLeft||document.body.scrollTop)){this.scrollY=document.body.scrollTop;this.scrollX=document.body.scrollLeft;}else if(document.documentElement&&(document.documentElement.scrollLeft||document.documentElement.scrollTop)){this.scrollY=document.documentElement.scrollTop;this.scrollX=document.documentElement.scrollLeft;}},setScroll:function(x,y){document.documentElement.scrollLeft=x;document.documentElement.scrollTop=y;},getParameter:function(parameter,parameterString){if(!parameterString){if(this.element.params){var parameterString=this.element.params;}else{return;}}
var parameterValue;var parameterPair=parameterString.split(',');var compareString=parameter+'=';var compareStringLength=compareString.length;for(var i=0;i<parameterPair.length;i++){if(parameterPair[i].substr(0,compareStringLength)==compareString){var tmp=parameterPair[i].split('=');parameterValue=tmp[1];break;}}
if(!parameterValue){return false;}else{return unescape(parameterValue);}},getDomain:function(url){var leadSlashes=url.indexOf('//');var domainStart=leadSlashes+2;var withoutResource=url.substring(domainStart,url.length);var nextSlash=withoutResource.indexOf('/');var domain=withoutResource.substring(0,nextSlash);if(domain.indexOf(':')>-1){var portColon=domain.indexOf(':');domain=domain.substring(0,portColon);}
return domain;},fileType:function(url){var image=new RegExp("[^\.]\.("+this.options.fileTypes.image.join('|')+")\s*$","i");if(image.test(url))return'image';if(url.indexOf('#')>-1&&(document.domain==this.getDomain(url)))return'inline';if(url.indexOf('?')>-1)url=url.substring(0,url.indexOf('?'));var type='unknown';var page=new RegExp("[^\.]\.("+this.options.fileTypes.page.join('|')+")\s*$","i");var media=new RegExp("[^\.]\.("+this.options.fileTypes.media.join('|')+")\s*$","i");if(document.domain!=this.getDomain(url))type='external';if(media.test(url))type='media';if(type=='external'||type=='media')return type;if(page.test(url)||url.substr((url.length-1),url.length)=='/')type='page';return type;},fileExtension:function(url){if(url.indexOf('?')>-1)url=url.substring(0,url.indexOf('?'));var extenstion='';for(var x=(url.length-1);x>-1;x--){if(url.charAt(x)=='.'){return extenstion;}
extenstion=url.charAt(x)+extenstion;}},monitorKeyboard:function(status){if(status)document.onkeydown=this.eventKeypress.bind(this);else document.onkeydown='';},eventKeypress:function(e){if(e==null)var keycode=event.keyCode;else var keycode=e.which;switch(keycode){case 27:this.deactivate();break;case 13:return;default:break;}
if(this.animating||!this.galleryToggle)return;switch(String.fromCharCode(keycode).toLowerCase()){case'p':this.galleryDirection=-1;this.changeImage();break;case'n':this.galleryDirection=1;this.changeImage();break;default:break;}},showData:function(){if(this.galleryToggle)$('lightWindow-photo-galleries').style.display='block';this.setupDataDimensions();this.setupDimensions(false);if(this.showDataToggle){var showDatabox=new Effect.Parallel([new Effect.SlideDown('lightWindow-data',{sync:true,duration:this.duration+1.0,from:0.0,to:1.0}),new Effect.Appear('lightWindow-data',{sync:true,duration:1.0})],{duration:0.65,afterFinish:this.setStatus.bind(this,false),queue:{position:'end',scope:'lightWindowAnimation'}});}else{this.setStatus(false);}},insertData:function(){if(this.element.title){if(this.showTitleToggle)$('lightWindow-title-bar-title').innerHTML=this.element.title;else $('lightWindow-data-title').innerHTML=this.element.title;}
if(this.element.caption)$('lightWindow-data-caption').innerHTML=this.element.caption;if(this.element.author)$('lightWindow-data-author').innerHTML=this.options.authorLead+this.element.author;},getGalleryInfo:function(rel){if(rel.indexOf('[')>-1){return new Array(escape(rel.substring(0,rel.indexOf('['))),escape(rel.substring(rel.indexOf('[')+1,rel.indexOf(']'))));}else{return false;}},getGallery:function(){var isBadBrowser=this.checkBrowser('msie 6');if(!$('lightWindow-photo-galleries').style.height||parseInt($('lightWindow-photo-galleries').style.height)==this.options.galleryTab.height){if(isBadBrowser){var gallerySize=100;}else{var gallerySize=((parseInt($('lightWindow-contents').style.height)*0.95)/this.options.galleryTab.height)*100;}
$('lightWindow-photo-galleries-list').setStyle({height:(parseInt($('lightWindow-contents').style.height)*0.95)-this.options.galleryTab.height+'px'});$('lightWindow-photo-galleries-list').innerHTML='';var output='';for(i in this.imageArray){if(typeof this.imageArray[i]=='object'){output+='<div class="lightWindow-photo-gallery-listing"><h1>'+unescape(i)+'</h1><ul>';for(j in this.imageArray[i]){if(typeof this.imageArray[i][j]=='object'){if(this.imageArray[i][j][0][5])showImages=',lWShowImages='+this.getParameter('lWShowImages',this.imageArray[i][j][0][5]);else showImages='';output+='<li><a href="#" params="lWGallery='+escape(i)+',lWCategory='+escape(j)+''+showImages+'" class="'+this.options.classNames.action+'" rel="reloadGallery" >'+unescape(j)+'</a></li>';}}
output+='</ul></div>';}}
new Insertion.Top('lightWindow-photo-galleries-list',output);this.actions('.lightWindow-photo-gallery-listing');if(isBadBrowser){$('lightWindow-photo-galleries').setStyle({height:(parseInt($('lightWindow-contents').style.height)*0.95)+'px',bottom:'0px'});$('lightWindow-photo-galleries-tab').className='down';}else{var showGalleries=new Effect.CushionScale('lightWindow-photo-galleries',gallerySize,{duration:this.duration,afterFinish:function(){$('lightWindow-photo-galleries-list').style.overflow='auto';$('lightWindow-photo-galleries-tab').className='down';},scaleX:false,scaleY:true,scaleContent:false,scaleFromCenter:false,queue:{position:'end',scope:'lightWindowAnimation'}});}}else{if(isBadBrowser){var bottom=-(parseInt($('lightWindow-contents').style.height)*0.95)+this.options.galleryTab.height;}else{var bottom=0;}
$('lightWindow-photo-galleries').setStyle({height:this.options.galleryTab.height+'px',bottom:bottom+'px',top:''});$('lightWindow-photo-galleries-list').setStyle({overflow:'hidden'});$('lightWindow-photo-galleries-tab').className='up';}},setupGallery:function(gallery,start)
{var lwc=$('lightWindow-photo-container');if(!(images=parseInt(this.getParameter('lWShowImages'))))images=1;for(var x=0;x<this.imageArray[gallery[0]][gallery[1]].length;x++){if(this.imageArray[gallery[0]][gallery[1]][x][0]==this.contentToFetch)break;}
this.activeImage=x;this.activeGallery=gallery;var lwn=document.createElement("div");lwn.setAttribute('id','lightWindow-navigation');lwc.appendChild(lwn);if(x!=0&&this.imageArray[gallery[0]][gallery[1]][x-images]){var lwnp=document.createElement("a");lwnp.setAttribute('id','lightWindow-previous');lwnp.setAttribute('href','#');lwn.appendChild(lwnp);Event.observe(lwnp,'click',this.changeImage.bindAsEventListener(this,this.imageArray[gallery[0]][gallery[1]][x-images][0],this.imageArray[gallery[0]][gallery[1]][x-images][1],this.imageArray[gallery[0]][gallery[1]][x-images][2],this.imageArray[gallery[0]][gallery[1]][x-images][3],this.imageArray[gallery[0]][gallery[1]][x-images][4]));lwnp.onclick=function(){return false;};}
if((x+1)<this.imageArray[gallery[0]][gallery[1]].length&&this.imageArray[gallery[0]][gallery[1]][x+images]){var lwnn=document.createElement("a");lwnn.setAttribute('id','lightWindow-next');lwnn.setAttribute('href','#');lwn.appendChild(lwnn);Event.observe(lwnn,'click',this.changeImage.bindAsEventListener(this,this.imageArray[gallery[0]][gallery[1]][x+images][0],this.imageArray[gallery[0]][gallery[1]][x+images][1],this.imageArray[gallery[0]][gallery[1]][x+images][2],this.imageArray[gallery[0]][gallery[1]][x+images][3],this.imageArray[gallery[0]][gallery[1]][x+images][4]));lwnn.onclick=function(){return false;};}
if(images==1)$('lightWindow-data-image').innerHTML='Image '+(x+1)+' of '+this.imageArray[gallery[0]][gallery[1]].length;this.addGalleryWindowMarkup();},loadInfo:function(){var showLoadingOptions=new Effect.Appear('lightWindow-loading-options',{delay:this.options.loadingDialog.delay,duration:this.duration,queue:{position:'front',scope:'lightWindowAnimation-loading'}});switch(this.windowType){case'image':this.preloadImage=new Array();if(!$('lightWindow-photo-container')){this.addPhotoWindowMarkup();this.addDataWindowMarkup();this.addGalleryWindowMarkup();}
var totalWidth=0;var totalHeight=0;var gallery=this.getGalleryInfo(this.element.rel);if(images=parseInt(this.getParameter('lWShowImages'))){for(var z=0;z<this.imageArray[gallery[0]][gallery[1]].length;z++){if(this.imageArray[gallery[0]][gallery[1]][z][0]==this.contentToFetch)break;}
$('lightWindow-photo-container').style.display='none';this.loading=images-1;for(var x=0;x<images;x++){if(this.imageArray[gallery[0]][gallery[1]][x+z]){this.preloadImage[x]=new Image();this.preloadImage[x].onload=function(){if($('lightWindow-photo-container').style.display!='block'){for(var t=0;t<=x;t++){if(this.preloadImage[t]&&(this.preloadImage[t].width!=0&&this.preloadImage[t].height!=0)){totalWidth=totalWidth+this.preloadImage[t].width;totalHeight=this.preloadImage[t].height;this.preloadImage.splice(t,1);this.loading--;}}
if(this.loading<0){$('lightWindow-photo-container').setStyle({display:'block'});$('lightWindow-photo-sizer').setStyle({width:totalWidth+'px',height:totalHeight+'px'});this.processInfo();}}}.bind(this,x);this.preloadImage[x].src=$('lightWindow-photo-'+x).src=this.imageArray[gallery[0]][gallery[1]][x+z][0];}}
this.activeImage=this.activeImage+x-1;if(this.galleryToggle)this.setupGallery(this.getGalleryInfo(this.element.rel));}else{this.preloadImage[0]=new Image();this.preloadImage[0].onload=function(){totalWidth=this.preloadImage[0].width;totalHeight=this.preloadImage[0].height;$('lightWindow-photo-container').setStyle({display:'block'});$('lightWindow-photo-sizer').setStyle({width:totalWidth+'px',height:totalHeight+'px'});this.processInfo();}.bind(this);this.preloadImage[0].src=$('lightWindow-photo-0').src=this.contentToFetch;if(this.galleryToggle)this.setupGallery(this.getGalleryInfo(this.element.rel));}
break;case'media':this.processInfo();break;case'external':var lwi='<iframe id="lightWindow-iframe" name="lightWindow-iframe" height="100%" width="100%" frameborder="0" scrolling="auto"></iframe>';new Insertion.Top($('lightWindow-contents'),lwi);parent.$('lightWindow-iframe').style.visibility='hidden';this.processInfo();break;case'page':var newAJAX=new Ajax.Request(this.contentToFetch,{method:'get',parameters:'',onComplete:this.processInfo.bind(this)});break;case'inline':var content=this.contentToFetch;if(content.indexOf('?')>-1){content=content.substring(0,content.indexOf('?'));}
content=content.substring(content.indexOf('#')+1);new Insertion.Top($('lightWindow-contents-container'),$(content).innerHTML);this.toggleTroubleElements('hidden',true);this.processInfo();break;default:throw('Page Type could not be determined, please amend this lightWindow URL '+this.contentToFetch);break;}},loadFinish:function(){this.actions();this.insertData(false);switch(this.windowType){case'page':var hideLoading=new Effect.Fade('lightWindow-loading',{duration:this.duration,afterFinish:this.windowAdjust.bind(this),queue:{position:'end',scope:'lightWindowAnimation'}});break;case'image':var hideLoading=new Effect.Fade('lightWindow-loading',{duration:this.duration,afterFinish:this.windowAdjust.bind(this),queue:{position:'end',scope:'lightWindowAnimation'}});break;case'media':var lwi='<iframe id="lightWindow-iframe" name="lightWindow-iframe" height="100%" width="100%" frameborder="0" scrolling="no" ></iframe>';new Insertion.Top($('lightWindow-contents'),lwi);iframeContent='<html><head><style type="text/css">*, html, body{ margin: 0px; padding: 0px;}</style></head><body><embed type="'+this.options.mimeTypes[this.fileExtension(this.contentToFetch)]+'" src="'+this.contentToFetch+'" width="100%" height="100%" name="lightWindow-media" id="lightWindow-media" quality="high" wmode="opaque" /></body></html>';if(parent.$('lightWindow-iframe').contentWindow){parent.$('lightWindow-iframe').contentWindow.document.open();parent.$('lightWindow-iframe').contentWindow.document.write(iframeContent);parent.$('lightWindow-iframe').contentWindow.document.close();}else{parent.$('lightWindow-iframe').contentDocument.open();parent.$('lightWindow-iframe').contentDocument.write(iframeContent);parent.$('lightWindow-iframe').contentDocument.close();}
var hideLoading=new Effect.Fade('lightWindow-loading',{duration:0,afterFinish:this.windowAdjust.bind(this),queue:{position:'end',scope:'lightWindowAnimation'}});break;case'external':parent.$('lightWindow-iframe').src=this.contentToFetch;var hideLoading=new Effect.Fade('lightWindow-loading',{duration:this.duration,afterFinish:this.windowAdjust.bind(this),queue:{position:'end',scope:'lightWindowAnimation'}});break;case'inline':var hideLoading=new Effect.Fade('lightWindow-loading',{duration:this.duration,afterFinish:this.windowAdjust.bind(this),queue:{position:'end',scope:'lightWindowAnimation'}});break;default:break;}},windowAdjust:function(){if(this.windowType=='external'||this.windowType=='media'){if(this.checkBrowser('firefox')){if($('overlay').style.height=='100%'||!$('overlay').style.height)$('overlay').style.height='101%';else $('overlay').style.height='100%';}
parent.$('lightWindow-iframe').style.visibility='visible';}
$('lightWindow-contents').style.overflow=this.boxOverFlow;this.toggleTroubleElements('visible',true);if(this.showDataToggle||this.showTitleToggle){this.showData();}},processInfo:function(response){if(this.checkBrowser('msie')){var windowHeight=document.documentElement.clientHeight;var windowWidth=document.documentElement.clientWidth;}else{var windowHeight=window.innerHeight;var windowWidth=window.innerWidth;}
if(this.showDataToggle)var dataWindow=this.options.dimensions.dataHeight;else var dataWindow=0;if(this.options.showTitleBar)titleHeight=this.options.dimensions.titleHeight;else titleHeight=0;var lWcWidth=parseInt($('lightWindow-contents').style.width);var lWcHeight=parseInt($('lightWindow-contents').style.height);var availableHeight=windowHeight-dataWindow-2*this.options.cushion-titleHeight;var availableWidth=windowWidth-2*this.options.cushion;var boxWidth,boxScrollWidth,boxHeight,boxScrollHeight,scaleX,scaleY;var totalHeight=0;var totalWidth=0;switch(this.windowType){case'image':if(!(images=parseInt(this.getParameter('lWShowImages'))))images=1;boxWidth=$('lightWindow-contents').offsetWidth;boxHeight=$('lightWindow-contents').offsetHeight;if($('lightWindow-photo-0').height>availableHeight){var totalWidth=0;for(var x=0;x<images;x++){$('lightWindow-photo-'+x).height=availableHeight;totalWidth=totalWidth+$('lightWindow-photo-'+x).width;}
if(images>1)totalWidth++;boxScrollHeight=availableHeight;boxScrollWidth=totalWidth;$('lightWindow-photo-sizer').style.height=availableHeight+'px';$('lightWindow-photo-sizer').style.width=totalWidth+'px';}else{boxScrollHeight=parseInt($('lightWindow-photo-sizer').style.height);boxScrollWidth=parseInt($('lightWindow-photo-sizer').style.width);}
break;case'external':boxWidth=$('lightWindow-contents').offsetWidth;boxHeight=$('lightWindow-contents').offsetHeight;break;case'media':boxWidth=$('lightWindow-contents').offsetWidth;boxHeight=$('lightWindow-contents').offsetHeight;break;case'page':new Insertion.Top($('lightWindow-contents-container'),response.responseText);this.toggleTroubleElements('hidden',true);boxWidth=$('lightWindow-contents').offsetWidth;boxScrollWidth=$('lightWindow-contents').scrollWidth;boxHeight=$('lightWindow-contents').offsetHeight;boxScrollHeight=$('lightWindow-contents').scrollHeight;break;case'inline':boxWidth=$('lightWindow-contents').offsetWidth;boxScrollWidth=$('lightWindow-contents').scrollWidth;boxHeight=$('lightWindow-contents').offsetHeight;boxScrollHeight=$('lightWindow-contents').scrollHeight+3;break;default:break;}
var ignorelWHeight=false;if(lWWidth=this.getParameter('lWWidth')){boxScrollWidth=parseFloat(lWWidth);if(boxScrollWidth>(windowWidth*.95)){tmp=boxScrollWidth;boxScrollWidth=0.90*windowWidth;lWHeight=this.getParameter('lWHeight');boxScrollHeight=parseFloat(lWHeight);boxScrollHeight=boxScrollHeight*(boxScrollWidth/tmp)
ignorelWHeight=true;}}
if(lWHeight=this.getParameter('lWHeight')){if(!ignorelWHeight){boxScrollHeight=parseFloat(lWHeight);if(boxScrollHeight>(windowHeight*.8)){boxScrollHeight=0.8*windowHeight;}}}
if(lWOverflow=this.getParameter('lWOverflow'))this.boxOverFlow=lWOverflow;if((boxScrollHeight<(windowHeight*.8))&&this.windowType!='external'&&this.windowType!='image'){scaleY=parseFloat((boxScrollHeight/boxHeight)*100);}else if(this.windowType=='external'&&!lWHeight){scaleY=parseFloat((windowHeight/(1.2*boxHeight))*100);}else if(this.windowType=='external'&&lWHeight){scaleY=parseFloat((boxScrollHeight/(boxHeight))*100);}else if(this.windowType=='image'||this.windowType=='media'){scaleY=parseFloat(((boxScrollHeight)/boxHeight)*100);}else{if(this.windowType!='media')this.boxOverFlow='auto';$('lightWindow-contents-container').marginRight='16px';scaleY=parseFloat((windowHeight/(1.2*boxHeight))*100);}
if((boxScrollWidth<(windowWidth*.8))&&this.windowType!='external'&&this.windowType!='image'&&this.windowType!='media'){scaleX=parseFloat(((boxScrollWidth)/boxWidth)*100);}else if(this.windowType=='external'&&!lWWidth){scaleX=parseFloat((windowWidth/(1.1*boxWidth))*100);}else if(this.windowType=='external'&&lWWidth){scaleX=parseFloat((boxScrollWidth/(boxWidth))*100);}else if(this.windowType=='image'||this.windowType=='media'){scaleX=parseFloat(((boxScrollWidth)/boxWidth)*100);}else{if(this.windowType!='media')this.boxOverFlow='auto';$('lightWindow-contents-container').marginRight='16px';scaleX=parseFloat((windowWidth/(1.1*boxWidth))*100);}
this.setStatus(true);var doDelay=0;if(scaleX!=100&&lWcWidth!=boxScrollWidth){if(scaleY==100)var doX=new Effect.CushionScale('lightWindow-contents',scaleX,{duration:this.duration,scaleX:true,scaleY:false,scaleCushion:{top:this.options.cushion,left:this.options.cushion},afterFinish:this.loadFinish.bind(this),scaleFromCenter:true,scaleContent:false,queue:{position:'front',scope:'lightWindowAnimation'}});else var doX=new Effect.CushionScale('lightWindow-contents',scaleX,{duration:this.duration,scaleX:true,scaleY:false,scaleCushion:{top:this.options.cushion,left:this.options.cushion},scaleContent:false,scaleFromCenter:true,queue:{position:'front',scope:'lightWindowAnimation'}});doDelay=this.duration/2;}
if(scaleY!=100&&lWcHeight!=boxScrollHeight){var doY=new Effect.CushionScale('lightWindow-contents',scaleY,{duration:this.duration,delay:doDelay,scaleX:false,scaleY:true,scaleCushion:{top:this.options.cushion,left:this.options.cushion},afterFinish:this.loadFinish.bind(this),scaleContent:false,scaleFromCenter:true,queue:{position:'end',scope:'lightWindowAnimation'}});}
if((!doX&&!doY)||(doX&&scaleY!=100&&!doY))this.loadFinish();},reloadWindow:function(element){Element.remove($('lightWindow-contents'));if($('lightWindow-data'))Element.remove($('lightWindow-data'));this.element=element;this.contentToFetch=this.element.href;this.addLightWindowMarkup(true);this.setupDimensions(true);this.displayLightWindow(true);this.loadInfo();},reloadGallery:function(e,link){this.element.params=link.getAttribute('params');var gallery=this.getParameter('lWGallery',this.element.params);var category=this.getParameter('lWCategory',this.element.paramse);this.element.rel=this.imageArray[gallery][category][0][4];this.element.title=this.imageArray[gallery][category][0][1];this.element.caption=this.imageArray[gallery][category][0][2];this.element.author=this.imageArray[gallery][category][0][3];this.contentToFetch=this.imageArray[gallery][category][0][0];Element.remove($('lightWindow-photo-container'));if($('lightWindow-data'))Element.remove($('lightWindow-data'));if($('lightWindow-title-bar'))$('lightWindow-title-bar').style.display='none';this.galleryToggle=true;this.activeGallery[0]=gallery
this.activeGallery[1]=category;this.activeImage=0;var showLoading=Effect.Appear('lightWindow-loading',{duration:0,afterFinish:this.loadInfo.bind(this)});},changeImage:function(e){var queue=Effect.Queues.get('lightWindowAnimation').each(function(e){e.cancel();});var data=$A(arguments);data.shift();if(data!=''){this.contentToFetch=data[0];this.element.title=data[1];this.element.caption=data[2];this.element.author=data[3];this.element.rel=data[4];}else{if(!(images=parseInt(this.getParameter('lWShowImages'))))images=1;if((this.galleryDirection<0&&(this.activeImage-1*images)<0)||(this.galleryDirection>0&&(this.activeImage+1*images)>=this.imageArray[this.activeGallery[0]][this.activeGallery[1]].length))return false;this.element.title=this.imageArray[this.activeGallery[0]][this.activeGallery[1]][this.activeImage+this.galleryDirection*images][1];this.element.caption=this.imageArray[this.activeGallery[0]][this.activeGallery[1]][this.activeImage+this.galleryDirection*images][2];this.element.author=this.imageArray[this.activeGallery[0]][this.activeGallery[1]][this.activeImage+this.galleryDirection*images][3];this.element.params=this.imageArray[this.activeGallery[0]][this.activeGallery[1]][0][5];this.element.rel=unescape(this.activeGallery[0]+'['+this.activeGallery[1]+']');this.contentToFetch=this.imageArray[this.activeGallery[0]][this.activeGallery[1]][this.activeImage+this.galleryDirection*images][0];this.activeImage=this.activeImage+this.galleryDirection*images;}
if((this.activeImage-1)>=0){var preloadNextImage=new Image();preloadNextImage.src=this.imageArray[this.activeGallery[0]][this.activeGallery[1]][this.activeImage-1][0];}
if((this.activeImage+1)<this.imageArray[this.activeGallery[0]][this.activeGallery[1]].length){var preloadPrevImage=new Image();preloadPrevImage.src=this.imageArray[this.activeGallery[0]][this.activeGallery[1]][this.activeImage+1][0];}
Element.remove($('lightWindow-photo-container'));if($('lightWindow-data'))Element.remove($('lightWindow-data'));if($('lightWindow-title-bar'))$('lightWindow-title-bar').style.visibility='hidden';this.galleryToggle=true;$('lightWindow-loading-options').style.display='none';var showLoading=Effect.Appear('lightWindow-loading',{duration:0,afterFinish:this.loadInfo.bind(this)});},insertForm:function(e){var element=Event.element(e).parentNode;var parameterString=Form.serialize(this.getParameter('lWForm',element.getAttribute('params')));if(this.options.formMethod=='post'){var newAJAX=new Ajax.Request(element.href,{method:'post',postBody:parameterString,onComplete:this.reloadWindow.bind(this,element)});}else if(this.options.formMethod=='get'){var newAJAX=new Ajax.Request(element.href,{method:'get',parameters:parameterString,onComplete:this.reloadWindow.bind(this,element)});}}}
Event.observe(window,'load',lightWindowInit,false);var lw=null;function lightWindowInit(){}
Effect.CushionScale=Class.create();Object.extend(Object.extend(Effect.CushionScale.prototype,Effect.Base.prototype),{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,scaleCushion:'none'},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+'px';if(this.options.scaleY)d.height=height+'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.scaleCushion=='none'){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=(this.originalTop-topd-this.options.scaleCushion.top)+'px';if(this.options.scaleX)d.left=(this.originalLeft-leftd-this.options.scaleCushion.left)+'px';}}else{if(this.options.scaleY)d.top=-topd+'px';if(this.options.scaleX)d.left=-leftd+'px';}}
this.element.setStyle(d);}});Array.prototype.inArray=function(value){var i;for(i=0;i<this.length;i++){if(this[i]===value){return true;}}
return false;};function addEvent(obj,type,fn){if(obj.addEventListener){obj.addEventListener(type,fn,false);EventCache.add(obj,type,fn);}
else if(obj.attachEvent){obj["e"+type+fn]=fn;obj[type+fn]=function(){obj["e"+type+fn](window.event);}
obj.attachEvent("on"+type,obj[type+fn]);EventCache.add(obj,type,fn);}
else{obj["on"+type]=obj["e"+type+fn];}}
var EventCache=function(){var listEvents=[];return{listEvents:listEvents,add:function(node,sEventName,fHandler){listEvents.push(arguments);},flush:function(){var i,item;for(i=listEvents.length-1;i>=0;i=i-1){item=listEvents[i];if(item[0].removeEventListener){item[0].removeEventListener(item[1],item[2],item[3]);};if(item[1].substring(0,2)!="on"){item[1]="on"+item[1];};if(item[0].detachEvent){item[0].detachEvent(item[1],item[2]);};item[0][item[1]]=null;};}};}();var Xanadu=null;Xanadu=new xanadu();function pageloader(){alert(Xanadu);}
var old_hightlight;var old_backgroundColor;var tmp1;var tmp2;function highLight(row){if(old_hightlight){old_hightlight.style.backgroundColor=old_backgroundColor;}
var r=document.getElementById(row);if(r){old_hightlight=r;old_backgroundColor=r.style.backgroundColor;r.style.backgroundColor="#cccccc";}}
var active_scaffold_old_hightlight;var active_scaffold_old_className;function active_scaffold_highLight(row){if(active_scaffold_old_hightlight){active_scaffold_old_hightlight.className=active_scaffold_old_className;}
var r=document.getElementById(row);if(r){active_scaffold_old_hightlight=r;active_scaffold_old_className=r.className;r.className='highlight';}}
var uesr_details_showing=false;var last_details_showing=null;function show_detail(obj){if(last_details_showing!=null&&last_details_showing!=obj)Element.hide(last_details_showing);Element.show(obj);last_details_showing=obj;uesr_details_showing=true;}
function trig_hidden_detail(obj){setTimeout(function(){hidden_detail(obj);},2000);uesr_details_showing=false;}
function hidden_detail(obj){if(uesr_details_showing==false){Element.hide(obj);}}
var FloatPane=Class.create();FloatPane.prototype={initialize:function(binding,fl,opts){this.DEBUG_ENABLED=!true;this.fl=fl;this.options=null;if(opts!=null)this.options=opts;else this.options={};this.dynamicPosition=false;this.closeDom=null;this.click_events=true;this.hide_delay_time=700;this.show_and_hide_effect=true;if(this.options.dynamicPosition!=null&&this.options.dynamicPosition==true)this.dynamicPosition=true;if(this.options.closeDomId!=null)this.closeDom=$(this.options.closeDomId);if(this.options.clickEvents!=null&&this.options.clickEvents==false)this.click_events=false;if(this.options.displayEffect!=null&&this.options.displayEffect==false)this.show_and_hide_effect=false;if(this.options.hideDelayTime!=null)this.hide_delay_time=this.options.hideDelayTime;this.inEvent=false;this.div=document.createElement("div");this.div.style.position="absolute";this.div.style.zIndex="99";this.div.id="__float_pane";document.body.appendChild(this.div);this.bindObj=null;this._bindBodyClickEvent();if(this.click_events)this._bindDivClickEvent();else this._bindDivMousemovingEvent();this.bindElement(binding,fl);this._initHide();},initStyle:function(){if(this.options.style!=null){for(attr in this.options.style){eval("this.div.style."+attr+"=this.options.style."+attr);}}},bindElement:function(object,fl){var obj=$(object);if(obj!=null){this.bindObj=obj;this._bindBindingEvent();if(fl==true){this.applyElement(this.bindObj.parentNode,true);}
this._initPosition();}else{}},appendChild:function(obj){try{this.div.appendChild(obj);}catch(e){alert("FloatPane.appendChild() execute faild:"+e);}},applyElement:function(obj,where){obj=$(obj);if(where==true){this.div.parentNode.removeChild(this.div);obj.appendChild(this.div);this._initPosition();}else{obj.parentNode.removeChild(obj);this.appendChild(obj);}},setInnerHTML:function(html){Element.update(this.div,html);},setX:function(n){this.div.style.left=n;},setY:function(n){this.div.style.top=n;},setRX:function(n){this.div.style.right=n;},setBY:function(n){this.div.style.buttom=n;},setW:function(n){this.div.style.width=n;},setH:function(n){this.div.style.height=n;},hide:function(){if(!this.show_and_hide_effect)Element.hide(this.div);else new Effect.Fade(this.div,{duration:0.3});},show:function(){if(this.dynamicPosition)this.bindElement(this.bindObj,this.fl);if(!this.show_and_hide_effect)Element.show(this.div);else new Effect.Appear(this.div,{duration:0.3,to:1.0});},isShow:function(){return this.div.style.display!="none";},_will_hide:function(){this._debug("this.inEvent:",this.inEvent);if(!this._inEvent())this.hide();},onclick:function(evt){},_stopEvent:function(evt){var e=(evt)?evt:window.event;if(window.event){e.cancelBubble=true;}else{e.stopPropagation();}},_initPosition:function(){var offsetParent=this.div.offsetParent==null?this.bindObj.offsetParent:this.div.offsetParent;var pos=this._getBindElementPositionForOffsetParent(offsetParent);if(this.options.rx!=null)this.setRX(this.options.rx+"px");else if(this.options.x!=null)this.setX(this.options.x+"px");else this.setX(pos.absoluteLeft+"px");if(this.options.by!=null)this.setBY(this.options.by+"px");if(this.options.y!=null)this.setY(this.options.y+"px");else this.setY(pos.absoluteTop+pos.offsetHeight+5+"px");this.initStyle();},_initHide:function(){Element.hide(this.div);},_getBindElementPosition:function(){var element=this.bindObj;var offsetTop=element.offsetTop;var offsetLeft=element.offsetLeft;var offsetWidth=element.offsetWidth;var offsetHeight=element.offsetHeight;return{absoluteTop:offsetTop,absoluteLeft:offsetLeft,offsetWidth:offsetWidth,offsetHeight:offsetHeight};},_getBindElementPositionForOffsetParent:function(offsetParent){var element=this.bindObj;if(element==null)
{return null;}
var offsetTop=element.offsetTop;var offsetLeft=element.offsetLeft;var offsetWidth=element.offsetWidth;var offsetHeight=element.offsetHeight;while((element=element.offsetParent)&&(element!=offsetParent))
{offsetTop+=element.offsetTop;offsetLeft+=element.offsetLeft;}
return{absoluteTop:offsetTop,absoluteLeft:offsetLeft,offsetWidth:offsetWidth,offsetHeight:offsetHeight};},_getBindElementOffsetPosition:function(){var element=this.bindObj;if(element==null)
{return null;}
var offsetTop=element.offsetTop;var offsetLeft=element.offsetLeft;var offsetWidth=element.offsetWidth;var offsetHeight=element.offsetHeight;while(element=element.offsetParent)
{offsetTop+=element.offsetTop;offsetLeft+=element.offsetLeft;}
return{absoluteTop:offsetTop,absoluteLeft:offsetLeft,offsetWidth:offsetWidth,offsetHeight:offsetHeight};},_bindBindingEvent:function(){if(this.click_events)this._bindBindingClickEvent();else this._bindBindingMousemovingEvent();if(this.closeDom!=null)
Event.observe(this.closeDom,'click',this._bindingOnClick.bindAsEventListener(this),false);},_bindBindingClickEvent:function(){Event.observe(this.bindObj,'click',this._bindingOnClick.bindAsEventListener(this),false);},_bindBindingMousemovingEvent:function(){Event.observe(this.bindObj,'mouseover',this._bindingOnMouseover.bindAsEventListener(this),false);Event.observe(this.bindObj,'mouseout',this._bindingOnMouseout.bindAsEventListener(this),false);if(this.closeDom!=null)
Event.observe(this.closeDom,'click',this._bindingOnClick.bindAsEventListener(this),false);},_bindingOnClick:function(evt){if(this.isShow()){this.hide();}else{this.show();}
this._skipEventTransfer();},_bindingOnMouseover:function(evt){this._setInEvent();if(!this.isShow()){this.show();}},_bindingOnMouseout:function(evt){this._setNotInEvent();this._hide_later();},_hide_later:function(){if(this.isShow()){setTimeout(this._will_hide.bind(this),this.hide_delay_time);}},_bindBodyClickEvent:function(){Event.observe(document.body,'click',this._bodyOnClick.bindAsEventListener(this),false);},_bodyOnClick:function(evt){if(!this._inEvent())this.hide();},_bindDivClickEvent:function(){Event.observe(this.div,'click',this._divOnClick.bindAsEventListener(this),false);},_divOnClick:function(evt){this._stopEvent(evt);},_bindDivMousemovingEvent:function(){Event.observe(this.div,'mouseover',this._divOnMouseover.bindAsEventListener(this),false);Event.observe(this.div,'mouseout',this._divOnMouseout.bindAsEventListener(this),false);},_divOnMouseover:function(evt){this._debug('div on mouseover');this._setInEvent();},_divOnMouseout:function(evt){this._debug('div on mouseout');this._setNotInEvent();this._hide_later();},_closerOnClick:function(evt){this.hide();},_inEvent:function(){return this.inEvent;},_setInEvent:function(){this.inEvent=true;this._debug("_setInEvent:",this.inEvent);},_setNotInEvent:function(){this.inEvent=false;this._debug("_setNotInEvent:",this.inEvent);},_skipEventTransfer:function(){this._setInEvent();setTimeout(this._setNotInEvent.bind(this),100);},_debug:function(){var s=null;for(var ags=0;ags<arguments.length;ags++){if(s==null)s="";s+=arguments[ags]+"\n";}
if(s!=null&&this.DEBUG_ENABLED)alert(s);},other:function(){}}
log_info=function(sender,communication)
{address=document.location.href
sender=sender
communication=communication
new Ajax.Request('/customer_event/log_info?address='+address+'&sender='+sender+'&communication='+communication,{asynchronous:true,evalScripts:true,method:'post',parameters:$H({})});}
var PriceComputer=Class.create();PriceComputer.prototype={initialize:function(argus){this.all_pepole_num=0;this.baby_num=0;this.child_num=0;this.adult_num=0;this.adult_unit_price=null;this.baby_unit_price=null;this.child_unit_price=null;this.set_arguments(argus);this.all_pepole_total_price=null;this.baby_total_price=null;this.child_total_price=null;this.adult_total_price=null;this._compute();},validate_number_format:function(str){var reg=/^[0-9]*$/;return reg.test(str);},set_arguments:function(argus){if(argus!=null){if(argus.all_pepole_num!=null)this.all_pepole_num=argus.all_pepole_num;if(argus.baby_num!=null)this.baby_num=argus.baby_num;if(argus.child_num!=null)this.child_num=argus.child_num;if(argus.adult_unit_price!=null)this.adult_unit_price=argus.adult_unit_price;if(argus.baby_unit_price!=null)this.baby_unit_price=argus.baby_unit_price;if(argus.child_unit_price!=null)this.child_unit_price=argus.child_unit_price;}},set_adult_num:function(num){this.adult_num=num;this._compute();},set_baby_num:function(num){this.baby_num=num;this._compute();},set_child_num:function(num){this.child_num=num;this._compute();},compute_baby_price:function(){return this.baby_total_price;},compute_child_price:function(){return this.child_total_price;},compute_adult_price:function(){return this.adult_total_price;},compute_total_price:function(){return this.all_pepole_total_price;},_compute:function(){this.all_pepole_num=this.adult_num+this.baby_num+this.child_num;if(this.baby_unit_price!=null)this.baby_total_price=this.baby_num*this.baby_unit_price;if(this.child_unit_price!=null)this.child_total_price=this.child_num*this.child_unit_price;if(this.adult_unit_price!=null)this.adult_total_price=this.adult_num*this.adult_unit_price;this.all_pepole_total_price=(this.baby_total_price!=null?this.baby_total_price:0)+(this.child_total_price!=null?this.child_total_price:0)+(this.adult_total_price!=null?this.adult_total_price:0);},other:function(){}}
var _otherWeb=""
var _bHasHead=true
var _bHasSubMenu=true
var _sina=false
var _hostname=""
var _hotel=""
function getCookieVal(offset){var endstr=document.cookie.indexOf(";",offset);if(endstr==-1)
endstr=document.cookie.length;return unescape(document.cookie.substring(offset,endstr));}
function getcookie(name){var arg=name+"=";var alen=arg.length;var clen=document.cookie.length;var i=0;while(i<clen){var j=i+alen;if(document.cookie.substring(i,j)==arg)
return getCookieVal(j);i=document.cookie.indexOf(" ",i)+1;if(i==0)break;}
return null;}
function updateChannel(channel)
{if(channel==null||channel==""){return 1;}else if(channel==6){return 7;}else if(channel==7){return 8;}else if(channel==8){return 9;}else if(channel==66){return 6;}
else{return channel;}}
function writeBanner(channel,uid){channel=updateChannel(channel);try{_otherWeb=cooperationWeb()
if(_otherWeb!=""){document.write(get_WebHead())
return}}catch(e){}
if(channel==null||channel==""){channel=1}
var BannerString=""
var BannerList=new Array()
var BannerRight="<TD align='left' valign='middle'> <img src='http://image.yoee.com/w/w1.gif'></TD>"
if((document.location.host.toLowerCase()=="www.yoee.com")||(document.location.host.toLowerCase()=="211.16.0.71")||(document.location.host.toLowerCase()=="211.16.0.72")||(document.location.host.toLowerCase()=="211.16.0.73")||(document.location.host.toLowerCase()=="10.0.3.70")){if(document.location.pathname.toLowerCase()=="/air/login.asp"){BannerRight="<TD align='left' valign='middle'><a href='http://www.yoee.com/trip/giftCity.asp?uid="+uid+"' target='_blank'><img src='http://image.yoee.com/banner/071207_ymbanner_ss.jpg' border='0' alt='登陆后答题送积分'></a></TD>"}}
if((document.location.host.toLowerCase()=="www.yoee.com")||(document.location.host.toLowerCase()=="211.16.0.71")||(document.location.host.toLowerCase()=="211.16.0.72")||(document.location.host.toLowerCase()=="211.16.0.73")||(document.location.host.toLowerCase()=="10.0.3.70")){if(document.location.pathname.toLowerCase()=="/trip/myaacount_xingcheng.asp"){BannerRight="<TD align='left' valign='middle'><a href='http://www.yoee.com/trip/giftCity.asp?flag=ipsos&uid="+uid+"' target='_blank'><img src='http://image.yoee.com/banner/071207_ymbanner_ss.jpg' border='0' alt='登陆后答题送积分'></a></TD>"}}
if((document.location.host.toLowerCase()=="sun.yoee.com")||(document.location.host.toLowerCase()=="211.16.0.88")||(document.location.host.toLowerCase()=="211.16.0.87")){if(document.location.pathname.toLowerCase()=="/air/show.jsp"){BannerRight="<TD align='left' valign='middle'><a href='http://sun.yoee.com/static/0711/071105_zhifubao.html' target='_blank'><img src='http://image.yoee.com/banner/071029_yemei.jpg' border='0'></a></TD>"}}
if((document.location.host.toLowerCase()=="www.yoee.com")||(document.location.host.toLowerCase()=="211.16.0.71")||(document.location.host.toLowerCase()=="211.16.0.72")||(document.location.host.toLowerCase()=="211.16.0.73")||(document.location.host.toLowerCase()=="10.0.3.70")){if(document.location.pathname.toLowerCase()=="/newguolv/default.asp"){BannerRight="<TD align='left' valign='middle'><a href='http://www.yoee.com/static/070831_cuxiaoYOEEjingpinyou.html' target='_blank'><img src='http://image.yoee.com/banner/070831_lvyouBanner.jpg' border='0'></a></TD>"}}
if((document.location.host.toLowerCase()=="www.yoee.com")||(document.location.host.toLowerCase()=="211.16.0.71")||(document.location.host.toLowerCase()=="211.16.0.72")||(document.location.host.toLowerCase()=="211.16.0.73")||(document.location.host.toLowerCase()=="10.0.3.70")){if(document.location.pathname.toLowerCase()=="/purposeguide/chinapurposeguide.asp"){BannerRight="<TD align='left' valign='middle'><a href=' http://www.yoee.com/newguolv/tripShow.asp?uid="+uid+"&productId=457&choice=free' target='_blank'><img src='http://image.yoee.com/banner/070904_yemei/070903_mudidizhinan.jpg' border='0'></a></TD>"}}
if((document.location.host.toLowerCase()=="www.yoee.com")||(document.location.host.toLowerCase()=="211.16.0.71")||(document.location.host.toLowerCase()=="211.16.0.72")||(document.location.host.toLowerCase()=="211.16.0.73")||(document.location.host.toLowerCase()=="10.0.3.70")){if(document.location.pathname.toLowerCase()=="/sun/airplane.asp")
BannerRight="<TD align='left' valign='middle'><a href='http://sun.yoee.com/static/0711/071106_yoee.html' target='_blank'><img src='http://image.yoee.com/banner/070918_ymbanner.jpg' border='0'></a></TD>"}
if((document.location.host.toLowerCase()=="www.yoee.com")||(document.location.host.toLowerCase()=="211.16.0.71")||(document.location.host.toLowerCase()=="211.16.0.72")||(document.location.host.toLowerCase()=="211.16.0.73")||(document.location.host.toLowerCase()=="10.0.3.70")){if(document.location.pathname.toLowerCase()=="/interticket/default.asp")
BannerRight="<TD align='left' valign='middle'><a href='http://sun.yoee.com/static/0711/071106_yoee.html' target='_blank'><img src='http://image.yoee.com/banner/070904_yemei/070903_lvyoushouye.jpg' border='0'></a></TD>"}
if((document.location.host.toLowerCase()=="sun.yoee.com")||(document.location.host.toLowerCase()=="211.16.0.71")||(document.location.host.toLowerCase()=="211.16.0.72")||(document.location.host.toLowerCase()=="211.16.0.73")||(document.location.host.toLowerCase()=="10.0.3.70")){if(document.location.pathname.toLowerCase()=="/inter/intershow.jsp")
BannerRight="<TD align='left' valign='middle'><img src='http://image.yoee.com/banner/070904_yemei/070903_chaxunjieguo.jpg' border='0'></TD>"}
if((document.location.host.toLowerCase()=="hotel.yoee.com")||(document.location.host.toLowerCase()=="211.16.0.89")||(document.location.host.toLowerCase()=="211.16.0.88")||(document.location.host.toLowerCase()=="211.16.0.87")||(document.location.host.toLowerCase()=="10.0.3.70:82")){if(document.location.pathname.toLowerCase()=="/hotel/default.jsp")
BannerRight="<TD align='left' valign='middle'><a href='http://www.yoee.com/newguolv/tripShow.asp?uid="+uid+"&productId=112&choice=free' target='_blank'><img src='http://image.yoee.com/banner/070904_yemei/070903_jiudianshouye.jpg' border='0'></a></TD>"}
BannerList[0]="<a href='"+_hostname+"/static/CAAdv.asp?uid="+uid+"' target='_blank'><img src='http://image.yoee.com/y/yoee_souyesd2.gif' border='0' width='354' height='46'></a>"
BannerList[1]="<a href='"+_hostname+"/static/CAAdv.asp?uid="+uid+"' target='_blank'><img src='http://image.yoee.com/y/yoee_souyesd2.gif' border='0' width='354' height='46'></a>"
BannerList[2]="<a href='"+_hostname+"/static/CAAdv.asp?uid="+uid+"' target='_blank'><img src='http://image.yoee.com/y/yoee_souyesd2.gif' border='0' width='354' height='46'></a>"
BannerList[3]=""
BannerList[4]="<a href='"+_hostname+"/static/CAAdv.asp?uid="+uid+"' target='_blank'><img src='http://image.yoee.com/y/yoee_souyesd2.gif' border='0' width='354' height='46'></a>"
BannerList[5]="<img src='http://image.yoee.com/y/yoee_souyesd3.gif' width='354' height='46'></TD>"
BannerList[6]="<a href='"+_hostname+"/static/CAAdv.asp?uid="+uid+"' target='_blank'><img src='http://image.yoee.com/y/yoee_souyesd2.gif' border='0' width='354' height='46'></a>"
BannerList[7]="<a href='"+_hostname+"/static/CAAdv.asp?uid="+uid+"' target='_blank'><img src='http://image.yoee.com/y/yoee_souyesd2.gif' border='0' width='354' height='46'></a>"
BannerList[8]="<a href='"+_hostname+"/static/CAAdv.asp?uid="+uid+"' target='_blank'><img src='http://image.yoee.com/y/yoee_souyesd2.gif' border='0' width='354' height='46'></a>"
BannerString="<TABLE border=0 cellPadding=3 cellSpacing=3 width=100%>"
BannerString+="<TR><TD width=250 align='right'><IMG src='http://image.yoee.com/homepage/yoeeindex_logo.gif'  alt='机票，飞机票，机票预订，预定机票，买机票，机票 预订，买 机票，上网 机票，特价 打折机票，订票，特惠酒店,酒店,酒店预订,宾馆,订房航班时刻，机场信息，航班信息，打折机票，特价机票，网上订票，国内机票，国际机票，yoee， air, ticket,fly，book ticket, flight' ></TD>"
BannerString+="<TD width='220' align='center'></TD>"+BannerRight+"</TR></TABLE>"
var hostname=location.href;if(_sina){BannerString="<table border=0 width=778><tr><td>"
BannerString+="<TABLE border=0 cellPadding=3 cellSpacing=3 width=100%><TR><TD width=188>"
BannerString+="<IMG src='http://image.yoee.com/homepage/yoeeindex_logo.gif'  alt='机票，飞机票，机票预订，预定机票，买机票，机票 预订，买 机票，上网 机票，特价 打折机票，订票，特惠酒店,酒店,酒店预订,宾馆,订房航班时刻，机场信息，航班信息，打折机票，特价机票，网上订票，国内机票，国际机票，yoee， air, ticket,fly，book ticket, flight'></TD>"
BannerString+=BannerList[1]+"</TR></TABLE></td><td>"
BannerString+="<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='122' height='56'>"
BannerString+="<param name='movie' value='http://image.yoee.com/flash/sinatravelLogo.swf'>"
BannerString+="<param name='quality' value='high'>"
BannerString+="<embed src='http://image.yoee.com/flash/sinatravelLogo.swf' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='122' height='56'></embed></object>"
BannerString+="</td></tr></table>"}else{BannerString="<table border=0 width=778><tr><td>"+BannerString+"</td></tr></table>"}
document.write(BannerString)}
var _uid=""
function writeHead(channel,uid){channel=updateChannel(channel);if(channel==null||channel==""){channel=1}
if(!_bHasHead)return;_uid=uid
var MenuList=new Array("首页","国内机票","国际机票","电子票","酒店","目的地指南","旅游","我的行程","公司客户","English")
var MenuWidth=new Array(59,78,78,0,59,91,59,78,78,78)
var SpceWidth=new Array(53,8,8,8,8,8,8,8,8,8,32)
var MenuListLink=new Array()
var imgPath="http://image.yoee.com/"
var imgString=""
var MenuActionA=new Array("homepage/yoeeindex_003.gif","y/yoeeindex_007.gif","y/yoeeindex_007.gif","y/yoeeindex_007.gif","y/yoeeindex_003.gif","y/yoeeindex_007_1.gif","y/yoeeindex_003.gif","y/yoeeindex_007.gif","y/yoeeindex_007.gif","y/yoeeindex_007.gif");var MenuActionB=new Array("y/yoeeindex_006.gif","y/yoeeindex_005.gif","y/yoeeindex_005.gif","y/yoeeindex_005.gif","y/yoeeindex_006.gif","y/yoeeindex_005_1.gif","y/yoeeindex_006.gif","y/yoeeindex_005.gif","y/yoeeindex_005.gif","y/yoeeindex_005.gif");MenuListLink[0]="http://www.yoee.com/default.asp?uid="+uid
MenuListLink[1]="http://www.yoee.com/sun/airplane.asp?uid="+uid
MenuListLink[2]="http://www.yoee.com/interticket/default.asp?uid="+uid
MenuListLink[3]="http://www.yoee.com/electron/electron.asp?uid="+uid
MenuListLink[4]="http://www.yoee.com/hotel/default.jsp?uid="+uid
MenuListLink[5]="http://www.yoee.com/purposeGuide/ChinaPurposeGuide.asp?uid="+uid
MenuListLink[6]="/yoee"
MenuListLink[7]="http://www.yoee.com/trip/myAacount_xingcheng.asp?uid="+uid
MenuListLink[8]="http://www.yoee.com/company/default.asp?uid="+uid
MenuListLink[9]="http://english.yoee.com/default.asp?uid="+uid
MenuString="<TABLE background='http://image.yoee.com/homepage/yoeeindex_002.gif' border=0 cellPadding=0 cellSpacing=0 height=30 width=778>"
MenuString+="<TR><TD width=10>&nbsp;</TD><TD valign=top>"
MenuString+="<TABLE border=0 cellPadding=0 cellSpacing=0 height=30 width=100%><TR>"
for(i=0;i<MenuList.length;i++){if(channel=="0"||channel==0){imgString=imgPath+MenuActionB[i]}
else{imgString=channel==(i+1)?imgPath+MenuActionA[i]:imgPath+MenuActionB[i]}
if(MenuWidth[i]!="0"){MenuString+="<TD width='"+SpceWidth[i]+"'>&nbsp;</TD><TD background='"
MenuString+=imgString
MenuString+="' width='"+MenuWidth[i]+"' align=center "
MenuString+=channel==(i+1)?"class=filter_14px>":">"
MenuString+="<A class=default3 href='"+MenuListLink[i]+"'><B>"
MenuString+=channel==(i+1)?"<FONT color=#003399>"+MenuList[i]+"</FONT></B></A></TD>":MenuList[i]+"</B></A></TD>"}}
MenuString+="<TD width='"+SpceWidth[9]+"'>&nbsp;</TD></TR></TABLE></TD></TR></TABLE>"
document.write(MenuString)}
function redirect(){document.location.href=_hostname+"/guide/default_guide.asp?uid="+_uid}
function writeSubMenu(channel,uid){channel=updateChannel(channel);if(channel==null||channel==""){channel=1}
var SubMenuString=""
var SubMenuStringLeft="<FONT color=#000099>您好"
if(getcookie("userName")!=null){indexTemp=getcookie("userName").indexOf("@");if(indexTemp==-1)
SubMenuStringLeft=SubMenuStringLeft+getcookie("userName");else
SubMenuStringLeft=SubMenuStringLeft+getcookie("userName").substring(0,indexTemp);}
var SubMentList=new Array()
SubMentList[0]="<img src='http://image.yoee.com/homepage/yoee_index_n04.gif' width='19' height='18'><span class='linkclass14'><a href='http://www.yoee.com/air/login.asp?index=7&redirecturl=L3RyaXAvbXlBYWNvdW50X3hpbmdjaGVuZy5hc3A =&uid=zsmuqggscgupfszuqgsugssqg'>注册登陆</a> |</span>"+"<img src='http://image.yoee.com/homepage/yoee_index_n02.gif' width='19' height='18'><span class='linkclass14'><a href=\'javascript:callOurCustomerService()'>客服中心</a> |</span>"+"<img src='http://image.yoee.com/y/yoee_souye05.gif' width='28' height='18'><span class='style14'><a href='http://www.yoee.com/trip/giftCity.asp?uid="+uid+"'>积分商城</a> |</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"
SubMentList[1]=SubMentList[0]
SubMentList[2]=SubMentList[0]
SubMentList[3]=SubMentList[0]
SubMentList[4]="<img src='http://image.yoee.com/hotel/common/order_hotel.gif' border=0 width=20 height=20><a href='http://www.yoee.net' target='_blank'>国际酒店</a> |<img src='http://image.yoee.com/hotel/common/order_hotel.gif' border=0 width=20 height=20><a href='"+_hotel+"/hotel/default.jsp?uid="+uid+"'>国内酒店</a> |"+SubMentList[0]
SubMentList[5]=SubMentList[0]
SubMentList[6]=SubMentList[0]
SubMentList[7]=SubMentList[0]
SubMentList[8]=SubMentList[0]
if(_sina){SubMentList[channel-1]="<FONT color=#000099><img src='http://image.yoee.com/homepage/yoee_index_n01.gif' border=0> <a href='"+_hostname+"/preferential/preferentialindex.asp?uid="+uid+"'>特惠频道</a> | "+"<img src='http://image.yoee.com/homepage/yoee_index_n02.gif' border=0> <a href='"+_hostname+"/HelpCenter/default.asp?uid="+uid+"'>客服中心</a> | "+"<img src='http://image.yoee.com/homepage/yoee_index_n_01.gif' border=0> <a href='javascript:redirect()'><a href='"+_hostname+"/purposeGuide/ChinaPurposeGuide.asp?uid="+uid+"'>目的地指南</a></a>  "+" </font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"}
SubMenuString="<TABLE border=0 cellPadding=0 cellSpacing=0 width=778 height=30 style='background-color: #c4cdff'><TR><TD align='left' valign='bottom' nowrap>&nbsp;&nbsp;"
SubMenuStringGallop="<td width='100%'><table width='97%' border=0 cellPadding=0 cellSpacing=0 align='center' height='29'><tr><td id='gallop' valign='bottom' align='right'></td></tr></table></td>"
if(channel==1)
SubMenuString=SubMenuString+SubMenuStringLeft
SubMenuString=SubMenuString+"</TD>"+SubMenuStringGallop+"<TD align='right' valign='middle' nowrap='true'>"
SubMenuString+=SubMentList[channel-1]+"</TD></TR></TABLE>"
document.write(SubMenuString)}
function callOurCustomerService(){alert("请拨打我们客服中心电话：0086-10-64226699")}
function writeBottom(channel,uid){channel=updateChannel(channel);if(channel==null||channel==""){channel=1}
try{if(_otherWeb!=""){document.write(get_WebBottom())
return}}catch(e){}
var bottomString=""
var bottomList=new Array()
bottomList[0]="<TABLE border=0 cellPadding=2 cellSpacing=2 width=778>"+"<TBODY><TR valign='middle'><TD align=center valign='middle'><DIV align=center valign='middle'>Copyright &copy; 2003-2007 "+"<IMG align=absMiddle height=13 src='http://image.yoee.com/homepage/yoeeindex_027.gif'  alt='机票，飞机票，机票预订，预定机票，买机票，机票 预订，买 机票，上网 机票，特价 打折机票，订票，特惠酒店,酒店,酒店预订,宾馆,订房航班时刻，机场信息，航班信息，打折机票，特价机票，网上订票，国内机票，国际机票，yoee， air, ticket,fly，book ticket, flight' width=81> "+"北京外企航空服务公司游易旅行网 版权所有<BR><!--<a href='http://www.yoee.com/static/agentPromotion_20050930.asp' target='_blank'><img align='absmiddle' src='http://image.yoee.com/y/yoeeindex.gif' border='0'></a>&nbsp;&nbsp;&nbsp;&nbsp;-->"+"北京外企航空服务公司--国航和FESCO投资的公司"+"<IMG align=absMiddle border=0 src='http://image.yoee.com/homepage/guohang.gif'>"+"<IMG align=absMiddle border=0 src='http://image.yoee.com/homepage/fesco.gif'> "+"<A href='http://image.yoee.com/homepage/IATA-99-passenger.gif' target=_blank>"+"<IMG align=absMiddle border=0 src='http://image.yoee.com/homepage/iata_logo.gif'></A>"+"<IMG align=absMiddle border=0 src='http://image.yoee.com/homepage/xinrenbiaoqian.gif'> "+"<!--&nbsp;&nbsp;&nbsp;&nbsp;<a href='http://www.yoee.com/static/agentPromotion_20050930.asp' target='_blank'><img align='absmiddle' src='http://image.yoee.com/y/yoeeindex.gif' border=0></a>--><BR>"+"北京市朝阳区东土城路12号怡和阳光大厦C座701 邮编：100013  <a href=\"javascript:openwin('"+_hostname+"/static/yoeemap.htm','left=10,top =10,width=433,height=292')\">公司地图</a><BR>北京市政府指定合作网站< br>"+"<a href='http://www.miibeian.gov.cn' target='_blank'>京ICP证070542</a><A href='http://www.hd315.gov.cn/beian/view.asp?bianhao=010202003120500174' target=_blank>"+"<IMG align=absMiddle border=0 height=36 src='http://image.yoee.com/homepage/biaoshi.gif' width=30></A> </DIV></TD></TR></TBODY></TABLE>"
bottomList[1]="<table width='778' border='0' cellspacing='2' cellpadding='2'><tr> <td> "+"<div align='center'>Copyright &copy; 2003-2007 <img src='http://image.yoee.com/y/yoeeindex_027.gif' width='81' height='13' align='absmiddle'> "+"&nbsp;&nbsp;&nbsp;&nbsp; 北京外企航空服务公司游易旅行网版权所有<br>北京外企航空服务公司--国航和FESCO投资的公司<br>北京市政府指定合作网站</div> <br>"+"</td></tr></table>"
bottomList[2]=bottomList[1]
bottomList[3]=bottomList[1]
bottomList[4]=bottomList[1]
bottomList[5]=bottomList[1]
bottomList[6]=bottomList[1]
bottomList[7]=bottomList[1]
bottomList[8]=bottomList[1]
bottomString="<TABLE border=0 cellPadding=3 cellSpacing=3 height=40 width=778><TR><TD align=center>"+"<b>出境游预定电话：010-58696411 &nbsp;&nbsp;&nbsp;&nbsp;传真：010-58696412</b></TD></TR>"+"<TR><TD align=center>"+"<A href='http://www.yoee.com/static/071108_guanyuwomen.html' target='_blank'>关于我们</A><FONT color=#ccccff> | </FONT>"+"<A href='http://www.yoee.com/static/service.asp?uid="+uid+"' target='_blank'>服务条款</A><FONT color=#ccccff> | </FONT>"+"<A href='http://www.yoee.com/static/privacy.asp?uid="+uid+"' target='_blank'>隐私条款</A><FONT color=#ccccff> | </FONT>"+"<A href='http://www.yoee.com/static/CP.asp?uid="+uid+"' target='_blank'>产品合作</A><FONT color=#ccccff> | </FONT>"+"<A href='http://www.yoee.com/static/agentRegister.asp?uid="+uid+"' target='_blank'>合作与代理</A><FONT color=#ccccff> | </FONT>"+"<A href='http://www.yoee.com/static/hzhb.asp?uid="+uid+"' target='_blank'>友情链接</A><FONT color=#ccccff> | </FONT>"+"<A href='http://www.yoee.com/service/tousu.asp?uid="+uid+"' target='_blank'>投诉与建议</A><FONT color=#ccccff> | </FONT>"+"<A href='http://www.yoee.com/static/aboutUsHR.asp?uid="+uid+"' target='_blank'>招聘英才</A>"+"</DIV></TD></TR></TABLE>"
document.write(bottomString+bottomList[channel-1])}
function openwin(page,size){window.open(page,"newuser","toolbar=no,location=no,directories=no,status=no,scrollbars=yes,menubar=no,resizable=no,"+size);}
function cooperationWeb(){var cooperation="leiyu,hiwing,china,zhongsou,24hotel";var hostname=location.hostname;hostname=hostname.split(".");if(hostname[0]=="leiyu"||hostname[0]=="hiwing"||hostname[0]=="china"||hostname[0]=="zhongsou"||hostname[0]=="24hotel"||hostname[1]=="chinafeas"){_bHasHead=false}
if(hostname[0]=="sinatravel"){var hostHref=location.href
if(hostHref.indexOf("show.jsp")>0||hostHref.indexOf("login.jsp")>0||hostHref.indexOf("filltable.jsp")>0||hostHref.indexOf("userconfirm")>0||hostHref.indexOf("finishshow.asp")>0||hostHref.indexOf("airplane.asp")>0)
_sina=true}
if(hostname[0]=="hiwing"||hostname[1]=="chinafeas"){_bHasSubMenu=false}
if(hostname[0]=="hotel"||hostname[0]=="sun"||hostname[0]=="218"){_hostname="http://www.yoee.com";}else if(cooperation.indexOf(hostname[0])>=0){_hostname="http://"+hostname[0]+".yoee.com";}else if(hostname[1]=="chinafeas"){_hostname="http://www.chinafeas.com";}else{_hostname="";}
if(hostname[1]=="chinafeas"){_hotel="http://hotel.chinafeas.com"}else if(hostname[0]=="www"||hostname[0]=="sun"||hostname[0]=="211"||hostname[0]=="10"||hostname[0]=="yoee"||hostname[0]=="218"){_hotel="http://hotel.yoee.com"}else if(hostname[0]=="leiyu"||hostname[0]=="sinatravel"){_hotel="http://"+hostname[0]+".hotel.yoee.com"}
if(cooperation.indexOf(hostname[0])>=0&&hostname[0]!=""&&hostname[0]!="hotel"){jsString="<script language=javascript src=http://www.yoee.com/inc/partner/"+hostname[0]+".js><"
jsString+="/script>"
document.write(jsString)
return hostname[0]}
else if(hostname[1]=="chinafeas"){jsString="<script language=javascript src=http://www.chinafeas.com/inc/partner/"+hostname[1]+".js><"
jsString+="/script>"
document.write(jsString)
return hostname[1]}else{return""}}
cooperationWeb();var weekend=[0,6];var weekendColor="#e0e0e0";var fontface="Verdana";var fontsize=8;var gNow=new Date();var ggWinContent;var ggPosX=-1;var ggPosY=-1;Calendar.Months=["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"];Calendar.DOMonth=[31,28,31,30,31,30,31,31,30,31,30,31];Calendar.lDOMonth=[31,29,31,30,31,30,31,31,30,31,30,31];function Calendar(p_item,p_month,p_year,p_format){if((p_month==null)&&(p_year==null))return;if(p_month==null){this.gMonthName=null;this.gMonth=null;this.gYearly=true;}else{this.gMonthName=Calendar.get_month(p_month);this.gMonth=new Number(p_month);this.gYearly=false;}
this.gYear=p_year;this.gFormat=p_format;this.gBGColor="white";this.gFGColor="black";this.gTextColor="black";this.gHeaderColor="black";this.gReturnItem=p_item;}
Calendar.get_month=Calendar_get_month;Calendar.get_daysofmonth=Calendar_get_daysofmonth;Calendar.calc_month_year=Calendar_calc_month_year;function Calendar_get_month(monthNo){return Calendar.Months[monthNo];}
function Calendar_get_daysofmonth(monthNo,p_year){if((p_year%4)==0){if((p_year%100)==0&&(p_year%400)!=0)
return Calendar.DOMonth[monthNo];return Calendar.lDOMonth[monthNo];}else
return Calendar.DOMonth[monthNo];}
function Calendar_calc_month_year(p_Month,p_Year,incr){var ret_arr=new Array();if(incr==-1){if(p_Month==0){ret_arr[0]=11;ret_arr[1]=parseInt(p_Year)-1;}
else{ret_arr[0]=parseInt(p_Month)-1;ret_arr[1]=parseInt(p_Year);}}else if(incr==1){if(p_Month==11){ret_arr[0]=0;ret_arr[1]=parseInt(p_Year)+1;}
else{ret_arr[0]=parseInt(p_Month)+1;ret_arr[1]=parseInt(p_Year);}}
return ret_arr;}
function Calendar_calc_month_year(p_Month,p_Year,incr){var ret_arr=new Array();if(incr==-1){if(p_Month==0){ret_arr[0]=11;ret_arr[1]=parseInt(p_Year)-1;}
else{ret_arr[0]=parseInt(p_Month)-1;ret_arr[1]=parseInt(p_Year);}}else if(incr==1){if(p_Month==11){ret_arr[0]=0;ret_arr[1]=parseInt(p_Year)+1;}
else{ret_arr[0]=parseInt(p_Month)+1;ret_arr[1]=parseInt(p_Year);}}
return ret_arr;}
new Calendar();Calendar.prototype.getMonthlyCalendarCode=function(){var vCode="";var vHeader_Code="";var vData_Code="";vCode+=("<TABLE width='100%' BORDER=1 CELLSPACING=0 CELLPADDING=0 BGCOLOR=\""+this.gBGColor+"\" style='font-size:"+fontsize+"pt;' align=center>");vHeader_Code=this.cal_header();vData_Code=this.cal_data();vCode+=(vHeader_Code+vData_Code);vCode+="</TABLE>";return vCode;}
Calendar.prototype.show=function(){var vCode="";ggWinContent+=("<FONT FACE='"+fontface+"' ><B>");ggWinContent+=(this.gMonthName+" "+this.gYear);ggWinContent+="</B><BR>";var prevMMYYYY=Calendar.calc_month_year(this.gMonth,this.gYear,-1);var prevMM=prevMMYYYY[0];var prevYYYY=prevMMYYYY[1];var nextMMYYYY=Calendar.calc_month_year(this.gMonth,this.gYear,1);var nextMM=nextMMYYYY[0];var nextYYYY=nextMMYYYY[1];ggWinContent+=("<TABLE WIDTH='100%' BORDER=0 CELLSPACING=0 CELLPADDING=0 BGCOLOR='#e0e0e0' style='font-size:"+fontsize+"pt;'><TR  ALIGN=center>");ggWinContent+=("<td><A HREF=\"javascript:void(0);\" "+"onMouseOver=\"window.status='上月'; return true;\" "+"onMouseOut=\"window.status=''; return true;\" "+"onClick=\"Build("+"'"+this.gReturnItem+"', '"+prevMM+"', '"+prevYYYY+"', '"+this.gFormat+"'"+");"+"\"><<<\/A></TD>");ggWinContent+="<td>";ggWinContent+=("<A HREF=\"javascript:void(0);\" "+"onMouseOver=\"window.status='下月'; return true;\" "+"onMouseOut=\"window.status=''; return true;\" "+"onClick=\"Build("+"'"+this.gReturnItem+"', '"+nextMM+"', '"+nextYYYY+"', '"+this.gFormat+"'"+");"+"\">>><\/A></TD></TR></TABLE>");vCode=this.getMonthlyCalendarCode();ggWinContent+=vCode;}
Calendar.prototype.showY=function(){var vCode="";var i;ggWinContent+="<FONT FACE='"+fontface+"' ><B>"
ggWinContent+=("Year : "+this.gYear);ggWinContent+="</B><BR>";var prevYYYY=parseInt(this.gYear)-1;var nextYYYY=parseInt(this.gYear)+1;ggWinContent+=("<TABLE WIDTH='100%' BORDER=1 CELLSPACING=0 CELLPADDING=0 BGCOLOR='#e0e0e0' style='font-size:"+fontsize+"pt;'><TR><td  ALIGN=center>");ggWinContent+=("[<A HREF=\"javascript:void(0);\" "+"onMouseOver=\"window.status='Go back one year'; return true;\" "+"onMouseOut=\"window.status=''; return true;\" "+"onClick=\"Build("+"'"+this.gReturnItem+"', null, '"+prevYYYY+"', '"+this.gFormat+"'"+");"+"\"><<Year<\/A>]</TD><td  ALIGN=center>");ggWinContent+="     </TD><td  ALIGN=center>";ggWinContent+=("[<A HREF=\"javascript:void(0);\" "+"onMouseOver=\"window.status='Go forward one year'; return true;\" "+"onMouseOut=\"window.status=''; return true;\" "+"onClick=\"Build("+"'"+this.gReturnItem+"', null, '"+nextYYYY+"', '"+this.gFormat+"'"+");"+"\">Year>><\/A>]</TD></TR></TABLE><BR>");ggWinContent+=("<TABLE WIDTH='100%' BORDER=0 CELLSPACING=0 CELLPADDING=0 style='font-size:"+fontsize+"pt;'><TR>");var j;for(i=0;i<12;i++){ggWinContent+="<td  ALIGN='center' VALIGN='top'>";this.gMonth=i;this.gMonthName=Calendar.get_month(this.gMonth);vCode=this.getMonthlyCalendarCode();ggWinContent+=(this.gMonthName+"/"+this.gYear+"");ggWinContent+=vCode;ggWinContent+="</TD>";if(i==3||i==7){ggWinContent+="</TR><TR>";}}
ggWinContent+="</TR></TABLE></font><BR>";}
Calendar.prototype.cal_header=function(){var vCode="";vCode=vCode+"<TR class='calendarHead'><td BGCOLOR='#e0e0e0'>日</TD><td>一</TD><td>二</TD><td>三</TD><td>四</TD><td>五</TD><td BGCOLOR='#e0e0e0'>六</TD></TR>";return vCode;}
Calendar.prototype.cal_data=function(){var vDate=new Date();vDate.setDate(1);vDate.setMonth(this.gMonth);vDate.setFullYear(this.gYear);var vFirstDay=vDate.getDay();var vDay=1;var vLastDay=Calendar.get_daysofmonth(this.gMonth,this.gYear);var vOnLastDay=0;var vCode="";vCode=vCode+"<TR class='px14'>";for(i=0;i<vFirstDay;i++){vCode=vCode+"<td  WIDTH='14%'"+this.write_weekend_string(i)+"><FONT FACE='"+fontface+"'></FONT></TD>";}
for(j=vFirstDay;j<7;j++){vCode=vCode+"<td  WIDTH='14%'"+this.write_weekend_string(j)+"><FONT FACE='"+fontface+"'>";if(new Date(this.gYear,this.gMonth,vDay+1)>=gNow&&new Date(this.gYear-1,this.gMonth,vDay+1)<=gNow)
vCode+="<A HREF='javascript:void(0);' "+"onMouseOver=\"window.status='设置为 "+this.format_data(vDay)+"'; return true;\" "+"onMouseOut=\"window.status=' '; return true;\" "+"onClick=\"document."+this.gReturnItem+".value='"+
this.format_data(vDay)+"';nd();nd();\">"+
this.format_day(vDay)+"</A>";else
vCode+=this.format_day(vDay);vCode+="</FONT></TD>";vDay=vDay+1;}
vCode=vCode+"</TR>";for(k=2;k<7;k++){vCode=vCode+"<TR class='px14'>";for(j=0;j<7;j++){vCode=vCode+"<td  WIDTH='14%'"+this.write_weekend_string(j)+"><FONT FACE='"+fontface+"'>";if(new Date(this.gYear,this.gMonth,vDay+1)>=gNow&&new Date(this.gYear-1,this.gMonth,vDay+1)<=gNow)
vCode+="<A HREF='javascript:void(0);' "+"onMouseOver=\"window.status='设置为 "+this.format_data(vDay)+"'; return true;\" "+"onMouseOut=\"window.status=' '; return true;\" "+"onClick=\"document."+this.gReturnItem+".value='"+
this.format_data(vDay)+"';nd();nd();\">"+
this.format_day(vDay)+"</A>";else
vCode+=this.format_day(vDay);vCode+="</FONT></TD>";vDay=vDay+1;if(vDay>vLastDay){vOnLastDay=1;break;}}
if(j==6)
vCode=vCode+"</TR>";if(vOnLastDay==1)
break;}
for(m=1;m<(7-j);m++){if(this.gYearly)
vCode=vCode+"<td  WIDTH='14%'"+this.write_weekend_string(j+m)+"><FONT FACE='"+fontface+"' COLOR='gray'> </FONT></TD>";else
vCode=vCode+"<td  WIDTH='14%'"+this.write_weekend_string(j+m)+"><FONT FACE='"+fontface+"' COLOR='gray'>"+m+"</FONT></TD>";}
return vCode;}
Calendar.prototype.format_day=function(vday){var vNowDay=gNow.getDate();var vNowMonth=gNow.getMonth();var vNowYear=gNow.getFullYear();if(vday==vNowDay&&this.gMonth==vNowMonth&&this.gYear==vNowYear)
return("<FONT COLOR=\"RED\"><B>"+vday+"</B></FONT>");else
return(vday);}
Calendar.prototype.write_weekend_string=function(vday){var i;for(i=0;i<weekend.length;i++){if(vday==weekend[i])
return(" BGCOLOR=\""+weekendColor+"\"");}
return"";}
Calendar.prototype.format_data=function(p_day){var vData;var vMonth=1+this.gMonth;vMonth=(vMonth.toString().length<2)?"0"+vMonth:vMonth;var vMon=Calendar.get_month(this.gMonth).substr(0,3).toUpperCase();var vFMon=Calendar.get_month(this.gMonth).toUpperCase();var vY4=new String(this.gYear);var vY2=new String(this.gYear.substr(2,2));var vDD=(p_day.toString().length<2)?"0"+p_day:p_day;switch(this.gFormat){case"MM\/DD\/YYYY":vData=vMonth+"\/"+vDD+"\/"+vY4;break;case"MM\/DD\/YY":vData=vMonth+"\/"+vDD+"\/"+vY2;break;case"MM-DD-YYYY":vData=vMonth+"-"+vDD+"-"+vY4;break;case"YYYY-MM-DD":vData=vY4+"-"+vMonth+"-"+vDD;break;case"YYYYMMDD":vData=vY4+vMonth+vDD;break;case"MM-DD-YY":vData=vMonth+"-"+vDD+"-"+vY2;break;case"DD\/MON\/YYYY":vData=vDD+"\/"+vMon+"\/"+vY4;break;case"DD\/MON\/YY":vData=vDD+"\/"+vMon+"\/"+vY2;break;case"DD-MON-YYYY":vData=vDD+"-"+vMon+"-"+vY4;break;case"DD-MON-YY":vData=vDD+"-"+vMon+"-"+vY2;break;case"DD\/MONTH\/YYYY":vData=vDD+"\/"+vFMon+"\/"+vY4;break;case"DD\/MONTH\/YY":vData=vDD+"\/"+vFMon+"\/"+vY2;break;case"DD-MONTH-YYYY":vData=vDD+"-"+vFMon+"-"+vY4;break;case"DD-MONTH-YY":vData=vDD+"-"+vFMon+"-"+vY2;break;case"DD\/MM\/YYYY":vData=vDD+"\/"+vMonth+"\/"+vY4;break;case"DD\/MM\/YY":vData=vDD+"\/"+vMonth+"\/"+vY2;break;case"DD-MM-YYYY":vData=vDD+"-"+vMonth+"-"+vY4;break;case"DD-MM-YY":vData=vDD+"-"+vMonth+"-"+vY2;break;default:vData=vMonth+"\/"+vDD+"\/"+vY4;}
return vData;}
function Build(p_item,p_month,p_year,p_format){gCal=new Calendar(p_item,p_month,p_year,p_format);gCal.gBGColor="white";gCal.gLinkColor="black";gCal.gTextColor="black";gCal.gHeaderColor="darkgreen";ggWinContent="";if(gCal.gYearly){if(ggPosX==-1)ggPosX=10;if(ggPosY==-1)ggPosY=10;if(fontsize==8)fontsize=6;gCal.showY();}
else{gCal.show();}
if(ggPosX==-1&&ggPosY==-1){overlib(ggWinContent,AUTOSTATUSCAP,STICKY,CLOSECLICK,CSSSTYLE,TEXTSIZEUNIT,"pt",TEXTSIZE,8,CAPTIONSIZEUNIT,"pt",CAPTIONSIZE,8,CLOSESIZEUNIT,"pt",CLOSESIZE,8,CAPTION,"日　期",OFFSETX,20,OFFSETY,-20);if((ns4)||(ie4)){ggPosX=parseInt(over.left);ggPosY=parseInt(over.top);}else if(ns6){ggPosX=parseInt(over.style.left);ggPosY=parseInt(over.style.top);}}
else{overlib(ggWinContent,AUTOSTATUSCAP,STICKY,CLOSECLICK,CSSSTYLE,TEXTSIZEUNIT,"pt",TEXTSIZE,8,CAPTIONSIZEUNIT,"pt",CAPTIONSIZE,8,CLOSESIZEUNIT,"pt",CLOSESIZE,8,CAPTION,"日  期",FIXX,ggPosX,FIXY,ggPosY);}}
function show_calendar(){p_item=arguments[0];if(arguments[1]==null)
p_month=new String(gNow.getMonth());else
p_month=arguments[1];if(arguments[2]==""||arguments[2]==null)
p_year=new String(gNow.getFullYear().toString());else
p_year=arguments[2];if(arguments[3]==null)
p_format="YYYY-MM-DD";else
p_format=arguments[3];Build(p_item,p_month,p_year,p_format);}
var INARRAY=1;var CAPARRAY=2;var STICKY=3;var BACKGROUND=4;var NOCLOSE=5;var CAPTION=6;var LEFT=7;var RIGHT=8;var CENTER=9;var OFFSETX=10;var OFFSETY=11;var FGCOLOR=12;var BGCOLOR=13;var TEXTCOLOR=14;var CAPCOLOR=15;var CLOSECOLOR=16;var WIDTH=17;var BORDER=18;var STATUS=19;var AUTOSTATUS=20;var AUTOSTATUSCAP=21;var HEIGHT=22;var CLOSETEXT=23;var SNAPX=24;var SNAPY=25;var FIXX=26;var FIXY=27;var FGBACKGROUND=28;var BGBACKGROUND=29;var PADX=30;var PADY=31;var FULLHTML=34;var ABOVE=35;var BELOW=36;var CAPICON=37;var TEXTFONT=38;var CAPTIONFONT=39;var CLOSEFONT=40;var TEXTSIZE=41;var CAPTIONSIZE=42;var CLOSESIZE=43;var FRAME=44;var TIMEOUT=45;var FUNCTION=46;var DELAY=47;var HAUTO=48;var VAUTO=49;var CLOSECLICK=50;var CSSOFF=51;var CSSSTYLE=52;var CSSCLASS=53;var FGCLASS=54;var BGCLASS=55;var TEXTFONTCLASS=56;var CAPTIONFONTCLASS=57;var CLOSEFONTCLASS=58;var PADUNIT=59;var HEIGHTUNIT=60;var WIDTHUNIT=61;var TEXTSIZEUNIT=62;var TEXTDECORATION=63;var TEXTSTYLE=64;var TEXTWEIGHT=65;var CAPTIONSIZEUNIT=66;var CAPTIONDECORATION=67;var CAPTIONSTYLE=68;var CAPTIONWEIGHT=69;var CLOSESIZEUNIT=70;var CLOSEDECORATION=71;var CLOSESTYLE=72;var CLOSEWEIGHT=73;if(typeof ol_fgcolor=='undefined'){var ol_fgcolor="#CCCCFF";}
if(typeof ol_bgcolor=='undefined'){var ol_bgcolor="#333399";}
if(typeof ol_textcolor=='undefined'){var ol_textcolor="#000000";}
if(typeof ol_capcolor=='undefined'){var ol_capcolor="#FFFFFF";}
if(typeof ol_closecolor=='undefined'){var ol_closecolor="#9999FF";}
if(typeof ol_textfont=='undefined'){var ol_textfont="Verdana,Arial,Helvetica";}
if(typeof ol_captionfont=='undefined'){var ol_captionfont="Verdana,Arial,Helvetica";}
if(typeof ol_closefont=='undefined'){var ol_closefont="Verdana,Arial,Helvetica";}
if(typeof ol_textsize=='undefined'){var ol_textsize="1";}
if(typeof ol_captionsize=='undefined'){var ol_captionsize="1";}
if(typeof ol_closesize=='undefined'){var ol_closesize="1";}
if(typeof ol_width=='undefined'){var ol_width="150";}
if(typeof ol_border=='undefined'){var ol_border="1";}
if(typeof ol_offsetx=='undefined'){var ol_offsetx=10;}
if(typeof ol_offsety=='undefined'){var ol_offsety=10;}
if(typeof ol_text=='undefined'){var ol_text="Default Text";}
if(typeof ol_cap=='undefined'){var ol_cap="";}
if(typeof ol_sticky=='undefined'){var ol_sticky=0;}
if(typeof ol_background=='undefined'){var ol_background="";}
if(typeof ol_close=='undefined'){var ol_close="<font color=white>关闭</font>";}
if(typeof ol_hpos=='undefined'){var ol_hpos=8;}
if(typeof ol_status=='undefined'){var ol_status="";}
if(typeof ol_autostatus=='undefined'){var ol_autostatus=0;}
if(typeof ol_height=='undefined'){var ol_height=-1;}
if(typeof ol_snapx=='undefined'){var ol_snapx=0;}
if(typeof ol_snapy=='undefined'){var ol_snapy=0;}
if(typeof ol_fixx=='undefined'){var ol_fixx=-1;}
if(typeof ol_fixy=='undefined'){var ol_fixy=-1;}
if(typeof ol_fgbackground=='undefined'){var ol_fgbackground="";}
if(typeof ol_bgbackground=='undefined'){var ol_bgbackground="";}
if(typeof ol_padxl=='undefined'){var ol_padxl=1;}
if(typeof ol_padxr=='undefined'){var ol_padxr=1;}
if(typeof ol_padyt=='undefined'){var ol_padyt=1;}
if(typeof ol_padyb=='undefined'){var ol_padyb=1;}
if(typeof ol_fullhtml=='undefined'){var ol_fullhtml=0;}
if(typeof ol_vpos=='undefined'){var ol_vpos=36;}
if(typeof ol_aboveheight=='undefined'){var ol_aboveheight=0;}
if(typeof ol_caption=='undefined'){var ol_capicon="";}
if(typeof ol_frame=='undefined'){var ol_frame=self;}
if(typeof ol_timeout=='undefined'){var ol_timeout=0;}
if(typeof ol_function=='undefined'){var ol_function=Function();}
if(typeof ol_delay=='undefined'){var ol_delay=0;}
if(typeof ol_hauto=='undefined'){var ol_hauto=0;}
if(typeof ol_vauto=='undefined'){var ol_vauto=0;}
if(typeof ol_closeclick=='undefined'){var ol_closeclick=0;}
if(typeof ol_css=='undefined'){var ol_css=51;}
if(typeof ol_fgclass=='undefined'){var ol_fgclass="";}
if(typeof ol_bgclass=='undefined'){var ol_bgclass="";}
if(typeof ol_textfontclass=='undefined'){var ol_textfontclass="";}
if(typeof ol_captionfontclass=='undefined'){var ol_captionfontclass="";}
if(typeof ol_closefontclass=='undefined'){var ol_closefontclass="";}
if(typeof ol_padunit=='undefined'){var ol_padunit="px";}
if(typeof ol_heightunit=='undefined'){var ol_heightunit="px";}
if(typeof ol_widthunit=='undefined'){var ol_widthunit="px";}
if(typeof ol_textsizeunit=='undefined'){var ol_textsizeunit="px";}
if(typeof ol_textdecoration=='undefined'){var ol_textdecoration="none";}
if(typeof ol_textstyle=='undefined'){var ol_textstyle="normal";}
if(typeof ol_textweight=='undefined'){var ol_textweight="normal";}
if(typeof ol_captionsizeunit=='undefined'){var ol_captionsizeunit="px";}
if(typeof ol_captiondecoration=='undefined'){var ol_captiondecoration="none";}
if(typeof ol_captionstyle=='undefined'){var ol_captionstyle="normal";}
if(typeof ol_captionweight=='undefined'){var ol_captionweight="bold";}
if(typeof ol_closesizeunit=='undefined'){var ol_closesizeunit="px";}
if(typeof ol_closedecoration=='undefined'){var ol_closedecoration="none";}
if(typeof ol_closestyle=='undefined'){var ol_closestyle="normal";}
if(typeof ol_closeweight=='undefined'){var ol_closeweight="normal";}
if(typeof ol_texts=='undefined'){var ol_texts=new Array("Text 0","Text 1");}
if(typeof ol_caps=='undefined'){var ol_caps=new Array("Caption 0","Caption 1");}
var otext="";var ocap="";var osticky=0;var obackground="";var oclose="Close";var ohpos=8;var ooffsetx=2;var ooffsety=2;var ofgcolor="";var obgcolor="";var otextcolor="";var ocapcolor="";var oclosecolor="";var owidth=100;var oborder=1;var ostatus="";var oautostatus=0;var oheight=-1;var osnapx=0;var osnapy=0;var ofixx=-1;var ofixy=-1;var ofgbackground="";var obgbackground="";var opadxl=0;var opadxr=0;var opadyt=0;var opadyb=0;var ofullhtml=0;var ovpos=36;var oaboveheight=0;var ocapicon="";var otextfont="Verdana,Arial,Helvetica";var ocaptionfont="Verdana,Arial,Helvetica";var oclosefont="Verdana,Arial,Helvetica";var otextsize="1";var ocaptionsize="1";var oclosesize="1";var oframe=self;var otimeout=0;var otimerid=0;var oallowmove=0;var ofunction=Function();var odelay=0;var odelayid=0;var ohauto=0;var ovauto=0;var ocloseclick=0;var ocss=51;var ofgclass="";var obgclass="";var otextfontclass="";var ocaptionfontclass="";var oclosefontclass="";var opadunit="px";var oheightunit="px";var owidthunit="px";var otextsizeunit="px";var otextdecoration="";var otextstyle="";var otextweight="";var ocaptionsizeunit="px";var ocaptiondecoration="";var ocaptionstyle="";var ocaptionweight="";var oclosesizeunit="px";var oclosedecoration="";var oclosestyle="";var ocloseweight="";var ox=0;var oy=0;var oallow=0;var oshowingsticky=0;var oremovecounter=0;var over=null;var ns4=(document.layers)?true:false;var ns6=(document.getElementById)?true:false;var ie4=(document.all)?true:false;var ie5=false;if(ie4){if((navigator.userAgent.indexOf('MSIE 5')>0)||(navigator.userAgent.indexOf('MSIE 6')>0)){ie5=true;}
if(ns6){ns6=false;}}
if((ns4)||(ie4)||(ns6)){document.onload=function(){document.onmousemove=mouseMove};if(ns4)document.captureEvents(Event.MOUSEMOVE)}else{overlib=no_overlib;nd=no_overlib;ver3fix=true;}
function no_overlib(){return ver3fix;}
function overlib(){otext=ol_text;ocap=ol_cap;osticky=ol_sticky;obackground=ol_background;oclose=ol_close;ohpos=ol_hpos;ooffsetx=ol_offsetx;ooffsety=ol_offsety;ofgcolor=ol_fgcolor;obgcolor=ol_bgcolor;otextcolor=ol_textcolor;ocapcolor=ol_capcolor;oclosecolor=ol_closecolor;owidth=ol_width;oborder=ol_border;ostatus=ol_status;oautostatus=ol_autostatus;oheight=ol_height;osnapx=ol_snapx;osnapy=ol_snapy;ofixx=ol_fixx;ofixy=ol_fixy;ofgbackground=ol_fgbackground;obgbackground=ol_bgbackground;opadxl=ol_padxl;opadxr=ol_padxr;opadyt=ol_padyt;opadyb=ol_padyb;ofullhtml=ol_fullhtml;ovpos=ol_vpos;oaboveheight=ol_aboveheight;ocapicon=ol_capicon;otextfont=ol_textfont;ocaptionfont=ol_captionfont;oclosefont=ol_closefont;otextsize=ol_textsize;ocaptionsize=ol_captionsize;oclosesize=ol_closesize;otimeout=ol_timeout;ofunction=ol_function;odelay=ol_delay;ohauto=ol_hauto;ovauto=ol_vauto;ocloseclick=ol_closeclick;ocss=ol_css;ofgclass=ol_fgclass;obgclass=ol_bgclass;otextfontclass=ol_textfontclass;ocaptionfontclass=ol_captionfontclass;oclosefontclass=ol_closefontclass;opadunit=ol_padunit;oheightunit=ol_heightunit;owidthunit=ol_widthunit;otextsizeunit=ol_textsizeunit;otextdecoration=ol_textdecoration;otextstyle=ol_textstyle;otextweight=ol_textweight;ocaptionsizeunit=ol_captionsizeunit;ocaptiondecoration=ol_captiondecoration;ocaptionstyle=ol_captionstyle;ocaptionweight=ol_captionweight;oclosesizeunit=ol_closesizeunit;oclosedecoration=ol_closedecoration;oclosestyle=ol_closestyle;ocloseweight=ol_closeweight;if((ns4)||(ie4)||(ns6)){oframe=ol_frame;if(ns4)over=oframe.document.overDiv
if(ie4)over=oframe.overDiv.style
if(ns6)over=oframe.document.getElementById("overDiv");}
var c=-1;var ar=arguments;for(i=0;i<ar.length;i++){if(c<0){if(ar[i]==1){otext=ol_texts[ar[++i]];}else{otext=ar[i];}
c=0;}else{if(ar[i]==1){otext=ol_texts[ar[++i]];continue;}
if(ar[i]==2){ocap=ol_caps[ar[++i]];continue;}
if(ar[i]==3){osticky=1;continue;}
if(ar[i]==4){obackground=ar[++i];continue;}
if(ar[i]==NOCLOSE){oclose="";continue;}
if(ar[i]==6){ocap=ar[++i];continue;}
if(ar[i]==9||ar[i]==7||ar[i]==8){ohpos=ar[i];continue;}
if(ar[i]==10){ooffsetx=ar[++i];continue;}
if(ar[i]==11){ooffsety=ar[++i];continue;}
if(ar[i]==12){ofgcolor=ar[++i];continue;}
if(ar[i]==13){obgcolor=ar[++i];continue;}
if(ar[i]==14){otextcolor=ar[++i];continue;}
if(ar[i]==15){ocapcolor=ar[++i];continue;}
if(ar[i]==16){oclosecolor=ar[++i];continue;}
if(ar[i]==17){owidth=ar[++i];continue;}
if(ar[i]==18){oborder=ar[++i];continue;}
if(ar[i]==19){ostatus=ar[++i];continue;}
if(ar[i]==20){oautostatus=1;continue;}
if(ar[i]==21){oautostatus=2;continue;}
if(ar[i]==22){oheight=ar[++i];oaboveheight=ar[i];continue;}
if(ar[i]==23){oclose=ar[++i];continue;}
if(ar[i]==24){osnapx=ar[++i];continue;}
if(ar[i]==25){osnapy=ar[++i];continue;}
if(ar[i]==26){ofixx=ar[++i];continue;}
if(ar[i]==27){ofixy=ar[++i];continue;}
if(ar[i]==28){ofgbackground=ar[++i];continue;}
if(ar[i]==29){obgbackground=ar[++i];continue;}
if(ar[i]==30){opadxl=ar[++i];opadxr=ar[++i];continue;}
if(ar[i]==31){opadyt=ar[++i];opadyb=ar[++i];continue;}
if(ar[i]==34){ofullhtml=1;continue;}
if(ar[i]==36||ar[i]==35){ovpos=ar[i];continue;}
if(ar[i]==37){ocapicon=ar[++i];continue;}
if(ar[i]==38){otextfont=ar[++i];continue;}
if(ar[i]==39){ocaptionfont=ar[++i];continue;}
if(ar[i]==40){oclosefont=ar[++i];continue;}
if(ar[i]==41){otextsize=ar[++i];continue;}
if(ar[i]==42){ocaptionsize=ar[++i];continue;}
if(ar[i]==43){oclosesize=ar[++i];continue;}
if(ar[i]==44){opt_FRAME(ar[++i]);continue;}
if(ar[i]==45){otimeout=ar[++i];continue;}
if(ar[i]==46){opt_FUNCTION(ar[++i]);continue;}
if(ar[i]==47){odelay=ar[++i];continue;}
if(ar[i]==48){ohauto=(ohauto==0)?1:0;continue;}
if(ar[i]==49){ovauto=(ovauto==0)?1:0;continue;}
if(ar[i]==50){ocloseclick=(ocloseclick==0)?1:0;continue;}
if(ar[i]==51){ocss=ar[i];continue;}
if(ar[i]==52){ocss=ar[i];continue;}
if(ar[i]==53){ocss=ar[i];continue;}
if(ar[i]==54){ofgclass=ar[++i];continue;}
if(ar[i]==55){obgclass=ar[++i];continue;}
if(ar[i]==56){otextfontclass=ar[++i];continue;}
if(ar[i]==57){ocaptionfontclass=ar[++i];continue;}
if(ar[i]==58){oclosefontclass=ar[++i];continue;}
if(ar[i]==59){opadunit=ar[++i];continue;}
if(ar[i]==60){oheightunit=ar[++i];continue;}
if(ar[i]==61){owidthunit=ar[++i];continue;}
if(ar[i]==62){otextsizeunit=ar[++i];continue;}
if(ar[i]==63){otextdecoration=ar[++i];continue;}
if(ar[i]==64){otextstyle=ar[++i];continue;}
if(ar[i]==65){otextweight=ar[++i];continue;}
if(ar[i]==66){ocaptionsizeunit=ar[++i];continue;}
if(ar[i]==67){ocaptiondecoration=ar[++i];continue;}
if(ar[i]==68){ocaptionstyle=ar[++i];continue;}
if(ar[i]==69){ocaptionweight=ar[++i];continue;}
if(ar[i]==70){oclosesizeunit=ar[++i];continue;}
if(ar[i]==71){oclosedecoration=ar[++i];continue;}
if(ar[i]==72){oclosestyle=ar[++i];continue;}
if(ar[i]==73){ocloseweight=ar[++i];continue;}}}
if(odelay==0){return overlib350();}else{odelayid=setTimeout("overlib350()",odelay);if(osticky){return false;}else{return true;}}}
function nd(){if(oremovecounter>=1){oshowingsticky=0};if((ns4)||(ie4)||(ns6)){if(oshowingsticky==0){oallowmove=0;if(over!=null)hideObject(over);}else{oremovecounter++;}}
return true;}
function overlib350(){var layerhtml;if(obackground!=""||ofullhtml){layerhtml=ol_content_background(otext,obackground,ofullhtml);}else{if(ofgbackground!=""&&ocss==CSSOFF){ofgbackground="BACKGROUND=\""+ofgbackground+"\"";}
if(obgbackground!=""&&ocss==CSSOFF){obgbackground="BACKGROUND=\""+obgbackground+"\"";}
if(ofgcolor!=""&&ocss==CSSOFF){ofgcolor="BGCOLOR=\""+ofgcolor+"\"";}
if(obgcolor!=""&&ocss==CSSOFF){obgcolor="BGCOLOR=\""+obgcolor+"\"";}
if(oheight>0&&ocss==51){oheight="HEIGHT="+oheight;}else{oheight="";}
if(ocap==""){layerhtml=ol_content_simple(otext);}else{if(osticky){layerhtml=ol_content_caption(otext,ocap,oclose);}else{layerhtml=ol_content_caption(otext,ocap,"");}}}
if(osticky){oshowingsticky=1;oremovecounter=0;}
layerWrite(layerhtml);if(oautostatus>0){ostatus=otext;if(oautostatus>1){ostatus=ocap;}}
oallowmove=0;if(otimeout>0){if(otimerid>0)clearTimeout(otimerid);otimerid=setTimeout("cClick()",otimeout);}
disp(ostatus);if(osticky){oallowmove=0;return false;}else{return true;}}
function ol_content_simple(text){if(ocss==CSSCLASS)txt="<TABLE WIDTH="+owidth+" BORDER=0 CELLPADDING="+oborder+" CELLSPACING=0 class=\""+obgclass+"\"><TR><td ><TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=0 class=\""+ofgclass+"\"><TR><td  VALIGN=TOP><FONT class=\""+otextfontclass+"\">"+text+"</FONT></TD></TR></TABLE></TD></TR></TABLE>";if(ocss==CSSSTYLE)txt="<TABLE WIDTH="+owidth+" BORDER=0 CELLPADDING="+oborder+" CELLSPACING=0 style=\"background-color: "+obgcolor+";height: "+oheight+oheightunit+";\"><TR><td ><TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=0 style=\"color: "+ofgcolor+";background-color: "+ofgcolor+";height: "+oheight+oheightunit+";\"><TR><td  VALIGN=TOP><FONT style=\"font-family: "+otextfont+";color: "+otextcolor+";font-size: "+otextsize+otextsizeunit+";text-decoration: "+otextdecoration+";font-weight: "+otextweight+";font-style:"+otextstyle+"\">"+text+"</FONT></TD></TR></TABLE></TD></TR></TABLE>";if(ocss==CSSOFF)txt="<TABLE WIDTH="+owidth+" BORDER=0 CELLPADDING="+oborder+" CELLSPACING=0 "+obgcolor+" "+oheight+"><TR><td ><TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=0 "+ofgcolor+" "+ofgbackground+" "+oheight+"><TR><td  VALIGN=TOP><FONT FACE=\""+otextfont+"\" COLOR=\""+otextcolor+"\" SIZE=\""+otextsize+"\">"+text+"</FONT></TD></TR></TABLE></TD></TR></TABLE>";set_background("");return txt;}
function ol_content_caption(text,title,close){closing="";closeevent="onMouseOver";if(ocloseclick==1)closeevent="onClick";if(ocapicon!="")ocapicon="<IMG SRC=\""+ocapicon+"\"> ";if(close!=""){if(ocss==CSSCLASS)closing="<td  ALIGN=RIGHT><A HREF=\"/\" "+closeevent+"=\"return cClick();\" class=\""+oclosefontclass+"\">"+close+"</A></TD>";if(ocss==CSSSTYLE)closing="<td  ALIGN=RIGHT><A HREF=\"/\" "+closeevent+"=\"return cClick();\" style=\"color: "+oclosecolor+";font-family: "+oclosefont+";font-size: "+oclosesize+oclosesizeunit+";text-decoration: "+oclosedecoration+";font-weight: "+ocloseweight+";font-style:"+oclosestyle+";\">"+close+"</A></TD>";if(ocss==CSSOFF)closing="<td  ALIGN=RIGHT><A HREF=\"/\" "+closeevent+"=\"return cClick();\"><FONT COLOR=\""+oclosecolor+"\" FACE=\""+oclosefont+"\" SIZE=\""+oclosesize+"\">"+close+"</FONT></A></TD>";}
if(ocss==CSSCLASS)txt="<TABLE WIDTH="+owidth+" BORDER=0 CELLPADDING="+oborder+" CELLSPACING=0 class=\""+obgclass+"\"><TR><td ><TABLE WIDTH=100% BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><td ><FONT class=\""+ocaptionfontclass+"\">"+ocapicon+title+"</FONT></TD>"+closing+"</TR></TABLE><TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=0 class=\""+ofgclass+"\"><TR><td  VALIGN=TOP><FONT class=\""+otextfontclass+"\">"+text+"</FONT></TD></TR></TABLE></TD></TR></TABLE>";if(ocss==CSSSTYLE)txt="<TABLE WIDTH="+owidth+" BORDER=0 CELLPADDING="+oborder+" CELLSPACING=0 style=\"background-color: "+obgcolor+";background-image: url("+obgbackground+");height: "+oheight+oheightunit+";\"><TR><td ><TABLE WIDTH=100% BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><td ><FONT style=\"font-family: "+ocaptionfont+";color: "+ocapcolor+";font-size: "+ocaptionsize+ocaptionsizeunit+";font-weight: "+ocaptionweight+";font-style: "+ocaptionstyle+";\">"+ocapicon+title+"</FONT></TD>"+closing+"</TR></TABLE><TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=0 style=\"color: "+ofgcolor+";background-color: "+ofgcolor+";height: "+oheight+oheightunit+";\"><TR><td  VALIGN=TOP><FONT style=\"font-family: "+otextfont+";color: "+otextcolor+";font-size: "+otextsize+otextsizeunit+";text-decoration: "+otextdecoration+";font-weight: "+otextweight+";font-style:"+otextstyle+"\">"+text+"</FONT></TD></TR></TABLE></TD></TR></TABLE>";if(ocss==CSSOFF)txt="<TABLE WIDTH="+owidth+" BORDER=0 CELLPADDING="+oborder+" CELLSPACING=0 "+obgcolor+" "+obgbackground+" "+oheight+"><TR><td ><TABLE WIDTH=100% BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><td ><B><FONT COLOR=\""+ocapcolor+"\" FACE=\""+ocaptionfont+"\" SIZE=\""+ocaptionsize+"\">"+ocapicon+title+"</FONT></B></TD>"+closing+"</TR></TABLE><TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=0 "+ofgcolor+" "+ofgbackground+" "+oheight+"><TR><td  VALIGN=TOP><FONT COLOR=\""+otextcolor+"\" FACE=\""+otextfont+"\" SIZE=\""+otextsize+"\">"+text+"</FONT></TD></TR></TABLE></TD></TR></TABLE>";set_background("");return txt;}
function ol_content_background(text,picture,hasfullhtml){if(hasfullhtml){txt=text;}else{if(ocss==CSSCLASS)txt="<TABLE WIDTH="+owidth+owidthunit+" BORDER=0 CELLPADDING=0 CELLSPACING=0 HEIGHT="+oheight+oheightunit+"><TR><td  COLSPAN=3 HEIGHT="+opadyt+opadunit+"></TD></TR><TR><td  WIDTH="+opadxl+opadunit+"></TD><td  VALIGN=TOP WIDTH="+(owidth-opadxl-opadxr)+opadunit+"><FONT class=\""+otextfontclass+"\">"+text+"</FONT></TD><td  WIDTH="+opadxr+opadunit+"></TD></TR><TR><td  COLSPAN=3 HEIGHT="+opadyb+opadunit+"></TD></TR></TABLE>";if(ocss==CSSSTYLE)txt="<TABLE WIDTH="+owidth+owidthunit+" BORDER=0 CELLPADDING=0 CELLSPACING=0 HEIGHT="+oheight+oheightunit+"><TR><td  COLSPAN=3 HEIGHT="+opadyt+opadunit+"></TD></TR><TR><td  WIDTH="+opadxl+opadunit+"></TD><td  VALIGN=TOP WIDTH="+(owidth-opadxl-opadxr)+opadunit+"><FONT style=\"font-family: "+otextfont+";color: "+otextcolor+";font-size: "+otextsize+otextsizeunit+";\">"+text+"</FONT></TD><td  WIDTH="+opadxr+opadunit+"></TD></TR><TR><td  COLSPAN=3 HEIGHT="+opadyb+opadunit+"></TD></TR></TABLE>";if(ocss==CSSOFF)txt="<TABLE WIDTH="+owidth+" BORDER=0 CELLPADDING=0 CELLSPACING=0 HEIGHT="+oheight+"><TR><td  COLSPAN=3 HEIGHT="+opadyt+"></TD></TR><TR><td  WIDTH="+opadxl+"></TD><td  VALIGN=TOP WIDTH="+(owidth-opadxl-opadxr)+"><FONT FACE=\""+otextfont+"\" COLOR=\""+otextcolor+"\" SIZE=\""+otextsize+"\">"+text+"</FONT></TD><td  WIDTH="+opadxr+"></TD></TR><TR><td  COLSPAN=3 HEIGHT="+opadyb+"></TD></TR></TABLE>";}
set_background(picture);return txt;}
function set_background(pic){if(pic==""){if(ie4)over.backgroundImage="none";if(ns6)over.style.backgroundImage="none";}else{if(ns4){over.background.src=pic;}else if(ie4){over.backgroundImage="url("+pic+")";}else if(ns6){over.style.backgroundImage="url("+pic+")";}}}
function disp(statustext){if((ns4)||(ie4)||(ns6)){if(oallowmove==0){placeLayer();showObject(over);oallowmove=1;}}
if(statustext!=""){self.status=statustext;}}
function placeLayer(){var placeX,placeY;if(ofixx>-1){placeX=ofixx;}else{winoffset=(ie4)?oframe.document.body.scrollLeft:oframe.pageXOffset;if(ie4)iwidth=oframe.document.body.clientWidth;if(ns4)iwidth=oframe.innerWidth;if(ns6)iwidth=oframe.outerWidth;if(ohauto==1){if((ox-winoffset)>((eval(iwidth))/2)){ohpos=7;}else{ohpos=8;}}
if(ohpos==9){placeX=ox+ooffsetx-(owidth/2);}
if(ohpos==8){placeX=ox+ooffsetx;if((eval(placeX)+eval(owidth))>(winoffset+iwidth)){placeX=iwidth+winoffset-owidth;if(placeX<0)placeX=0;}}
if(ohpos==7){placeX=ox-ooffsetx-owidth;if(placeX<winoffset)placeX=winoffset;}
if(osnapx>1){var snapping=placeX%osnapx;if(ohpos==7){placeX=placeX-(osnapx+snapping);}else{placeX=placeX+(osnapx-snapping);}
if(placeX<winoffset)placeX=winoffset;}}
if(ofixy>-1){placeY=ofixy;}else{scrolloffset=(ie4)?oframe.document.body.scrollTop:oframe.pageYOffset;if(ovauto==1){if(ie4)iheight=oframe.document.body.clientHeight;if(ns4)iheight=oframe.innerHeight;if(ns6)iheight=oframe.outerHeight;iheight=(eval(iheight))/2;if((oy-scrolloffset)>iheight){ovpos=35;}else{ovpos=36;}}
if(ovpos==35){if(oaboveheight==0){var divref=(ie4)?oframe.document.all['overDiv']:over;oaboveheight=(ns4)?divref.clip.height:divref.offsetHeight;}
placeY=oy-(oaboveheight+ooffsety);if(placeY<scrolloffset)placeY=scrolloffset;}else{placeY=oy+ooffsety;}
if(osnapy>1){var snapping=placeY%osnapy;if(oaboveheight>0&&ovpos==35){placeY=placeY-(osnapy+snapping);}else{placeY=placeY+(osnapy-snapping);}
if(placeY<scrolloffset)placeY=scrolloffset;}}
repositionTo(over,placeX,placeY);}
function mouseMove(e){if((ns4)||(ns6)){ox=e.pageX;oy=e.pageY;}
if(ie4){ox=event.x;oy=event.y;}
if(ie5){ox=event.x+oframe.document.body.scrollLeft;oy=event.y+oframe.document.body.scrollTop;}
if(oallowmove==1){placeLayer();}}
function cClick(){hideObject(over);oshowingsticky=0;return false;}
function compatibleframe(frameid){if(ns4){if(typeof frameid.document.overDiv=='undefined')return false;}else if(ie4){if(typeof frameid.document.all["overDiv"]=='undefined')return false;}else if(ns6){if(frameid.document.getElementById('overDiv')==null)return false;}
return true;}
function layerWrite(txt){txt+="\n";if(ns4){var lyr=oframe.document.overDiv.document
lyr.write(txt)
lyr.close()}else if(ie4){oframe.document.all["overDiv"].innerHTML=txt}else if(ns6){range=oframe.document.createRange();range.setStartBefore(over);domfrag=range.createContextualFragment(txt);while(over.hasChildNodes()){over.removeChild(over.lastChild);}
over.appendChild(domfrag);}}
function showObject(obj){if(ns4)obj.visibility="show";else if(ie4)obj.visibility="visible";else if(ns6)obj.style.visibility="visible";}
function hideObject(obj){if(ns4)obj.visibility="hide";else if(ie4)obj.visibility="hidden";else if(ns6)obj.style.visibility="hidden";if(otimerid>0)clearTimeout(otimerid);if(odelayid>0)clearTimeout(odelayid);otimerid=0;odelayid=0;self.status="";}
function repositionTo(obj,xL,yL){if((ns4)||(ie4)){obj.left=xL;obj.top=yL;}else if(ns6){obj.style.left=xL+"px";obj.style.top=yL+"px";}}
function opt_FRAME(frm){oframe=compatibleframe(frm)?frm:ol_frame;if((ns4)||(ie4||(ns6))){if(ns4)over=oframe.document.overDiv;if(ie4)over=oframe.overDiv.style;if(ns6)over=oframe.document.getElementById("overDiv");}
return 0;}
function opt_FUNCTION(callme){otext=callme()
return 0;}
airstr="<option value='all' selected>全部</option><option value='CA'>中国国际航空公司</option><option value='CZ'>中国南方航空公司</option><option value='MU'>中国东方航空公司</option><option value='HU'>海南航空公司</option><option value='ZH'>深圳航空公司</option><option value='3U'>四川航空公司</option><option value='MF'>厦门航空公司</option><option value='FM'>上海航空公司</option><option value='SC'>山东航空公司</option><option value='BK'>奥凯航空公司</option><option value='EU'>鹰联航空公司</option><option value='8L'>祥鹏航空公司</option><option value='KN'>中国联合航空公司</option><option value='8C'>东星航空公司</option><option value='HO'>上海吉祥航空公司</option><option value='G5'>华夏航空公司</option><option value='PN'>西部航空公司</option><option value='GS'>大新华快运航空公司</option><option value='CN'>CN大新华快运航空公司</option>";citystr="<option value='AKU'>A阿克苏</option><option value='AAT'>A阿勒泰</option><option value='AKA'>A安康</option><option value='AQG'>A安庆</option><option value='AOG'>A鞍山</option><option value='BSD'>B保山</option><option value='BAV'>B包头</option><option value='BHY'>B北海</option><option value='PEK' selected='selected'>B首都机场</Option><option value='NAY' >B北京南苑</option><option value='BFU'>B蚌埠</option><option value='CGQ'>C长春</option><option value='CGD'>C常德</option><option value='CSX'>C长沙</option><option value='CIH'>C长治</option><option value='CZX'>C常州</option><option value='CHG'>C朝阳</option><option value='CTU'>C成都</option><option value='CIF'>C赤峰</option><option value='CKG'>C重庆</option><option value='DAX'>D达县</option><option value='DLC'>D大连</option><option value='DIG'>D迪庆</option><option value='DLU'>D大理</option><option value='DDG'>D丹东</option><option value='DAT'>D大同</option><option value='DNH'>D敦煌</option><option value='DOY'>D东营</option><option value='ENH'>E恩施</option><option value='DSN'>E鄂尔多斯</option><option value='FUG'>F阜阳</option><option value='FYN'>F富蕴</option><option value='FOC'>F福州</option><option value='KOW'>G赣州</option><option value='GOQ'>G格尔木</option><option value='GHN'>G广汉</option><option value='CAN'>G广州</option><option value='KWL'>G桂林</option><option value='KWE'>G贵阳</option><option value='HRB'>H哈尔滨</option><option value='HAK'>H海口</option><option value='HLD'>H海拉尔</option><option value='HMI'>H哈密</option><option value='HGH'>H杭州</option><option value='HZG'>H汉中</option><option value='HFE'>H合肥</option><option value='HEK'>H黑河</option><option value='HNY'>H衡阳</option><option value='HTN'>H和田</option><option value='TXN'>H黄山</option><option value='HYN'>H黄岩</option><option value='HET'>H呼和浩特</option><option value='KNC'>J吉安</option><option value='JMU'>J佳木斯</option><option value='JGN'>J嘉峪关</option><option value='JIL'>J吉林</option><option value='TNA'>J济南</option><option value='JNG'>J济宁</option><option value='JDZ'>J景德镇</option><option value='JJN'>J晋江</option><option value='JNZ'>J锦州</option><option value='JGS'>J井冈山</option><option value='CHW'>J酒泉</option><option value='JIU'>J九江</option><option value='JZH'>J九寨沟</option><option value='KRY'>K克拉玛依</option><option value='KHG'>K喀什</option><option value='KRL'>K库尔勒</option><option value='KMG'>K昆明</option><option value='KCA'>K库车</option><option value='LHW'>L兰州</option><option value='LXA'>L拉萨</option><option value='LYG'>L连云港</option><option value='LJG'>L丽江</option><option value='HZH'>L黎平</option><option value='LYI'>L临沂</option><option value='LZH'>L柳州</option><option value='LYA'>L洛阳</option><option value='LNJ'>L临沧</option><option value='LZO'>L泸州</option><option value='LUM'>M芒市</option><option value='NZH'>M满洲里</option><option value='MXZ'>M梅县</option><option value='MIG'>M绵阳</option><option value='MDG'>M牡丹江</option><option value='KHN'>N南昌</option><option value='NAO'>N南充</option><option value='NKG'>N南京</option><option value='NNG'>N南宁</option><option value='NTG'>N南通</option><option value='NNY'>N南阳</option><option value='NGB'>N宁波</option><option value='PZI'>P攀枝花</option><option value='IQM'>Q且末</option><option value='TAO'>Q青岛</option><option value='IQN'>Q庆阳</option><option value='SHP'>Q秦皇岛</option><option value='NDG'>Q齐齐哈尔</option><option value='JJN'>Q泉州</option><option value='JUZ'>Q衢州</option><option value='SYX'>S三亚</option><option value='SHA'>S上海虹桥</option><option value='PVG'>S上海浦东</option><option value='SWA'>S汕头</option><option value='SHS'>S沙市</option><option value='SZX'>S深圳</option><option value='SHE'>S沈阳</option><option value='SJW'>S石家庄</option><option value='SYM'>S思茅</option><option value='SZV'>S苏州</option><option value='TCG'>T塔城</option><option value='TYN'>T太原</option><option value='TSN'>T天津</option><option value='TNH'>T通化</option><option value='TGO'>T通辽</option><option value='TEN'>T铜仁</option><option value='WXN'>W万州</option><option value='WEF'>W潍坊</option><option value='WEH'>W威海</option><option value='WNZ'>W温州</option><option value='WUH'>W武汉天河</option><!--<option value='WJD'>W武汉王家墩</option>--><option value='HLH'>W乌兰浩特</option><option value='URC'>U乌鲁木齐</option><option value='WUA'>W乌海</option><option value='WUS'>W武夷山</option><option value='WUZ'>W梧州</option><option value='WUX'>W无锡</option><option value='XMN'>X厦门</option><option value='JHG'>X西双版纳</option><option value='XIY'>X西安</option><option value='XFN'>X襄樊</option><option value='XIC'>X西昌</option><option value='XIL'>X锡林浩特</option><option value='XNN'>X西宁</option><option value='XUZ'>X徐州</option><option value='ACX'>X兴义</option><option value='ENY'>Y延安</option><option value='YNJ'>Y延吉</option><option value='YNT'>Y烟台</option><option value='YNZ'>Y盐城</option><option value='YBP'>Y宜宾</option><option value='YIH'>Y宜昌</option><option value='INC'>Y银川</option><option value='YIN'>Y伊宁</option><option value='YIW'>Y义乌</option><option value='UYN'>Y榆林</option><option value='YCU'>Y运城</option><option value='ZAT'>Z昭通</option><option value='DYG'>Z张家界</option><option value='ZHA'>Z湛江</option><option value='CGO'>Z郑州</option><option value='HSN'>Z舟山</option><option value='ZUH'>Z珠海</option><option value='ZYI'>Z遵义</option>";timestr="<option value='00:00:00'>不限</option><option value='07:00:00'>7:00</option><option value='09:00:00'>9:00</option><option value='11:00:00'>11:00</option><option value='13:00:00'>13:00</option><option value='15:00:00'>15:00</option><option value='17:00:00'>17:00</option><option value='19:00:00'>19:00</option><option value='21:00:00'>21:00</option><option value='23:00:00'>23:00</option>";function isDateString(sDate)
{var iaMonthDays=[31,28,31,30,31,30,31,31,30,31,30,31]
var iaDate=new Array(3)
var year,month,day
if(arguments.length!=1)return false
iaDate=sDate.toString().split("-")
if(iaDate.length!=3)return false
if(iaDate[1].length>2||iaDate[2].length>2)return false
year=parseFloat(iaDate[0])
month=parseFloat(iaDate[1])
day=parseFloat(iaDate[2])
if(year<1900||year>2100)return false
if(((year%4==0)&&(year%100!=0))||(year%400==0))iaMonthDays[1]=29;if(month<1||month>12)return false
if(day<1||day>iaMonthDays[month-1])return false
return true}
function stringToDate(sDate,bIgnore)
{var bValidDate,year,month,day
var iaDate=new Array(3)
if(bIgnore)bValidDate=true
else bValidDate=isDateString(sDate)
if(bValidDate)
{iaDate=sDate.toString().split("-")
year=parseFloat(iaDate[0])
month=parseFloat(iaDate[1])-1
day=parseFloat(iaDate[2])
return(new Date(year,month,day))}
else return(new Date(1900,1,1))}
function checkAll(form)
{var returnvalue=true;var errorstr="";if(form.triptype[0].checked)
{if(form.startCode1.value=="non"||form.destinationCode1.value=="non")
{returnvalue=false;errorstr+="请输入出发/到达城市\n";}
if(form.startCode1.value==form.destinationCode1.value)
{returnvalue=false;errorstr+="出发/到达城市不能相同\n";}
if(!isDateString(form.takeoffDate1.value))
{returnvalue=false
errorstr+="请输入正确日期格式\n YYYY-MM-DD\n";}
var d=new Date();var s=d.getFullYear()+"-"+(d.getMonth()+1)+"-"+d.getDate();if(stringToDate(form.takeoffDate1.value)<stringToDate(s))
{returnvalue=false
errorstr+="您输入的日期无效\n";}}
else if(form.triptype[1].checked)
{if(!isDateString(form.takeoffDate1.value))
{returnvalue=false;errorstr+="请输入正确的出发日期\n YYYY-MM-DD\n";}
if(!isDateString(form.takeoffDate2.value))
{returnvalue=false;errorstr+="请输入正确的返程日期\n YYYY-MM-DD\n";}
if(stringToDate(form.takeoffDate1.value)<new Date())
{returnvalue=false
errorstr+="您输入的日期无效\n";}
if(form.startCode1.value=="non"||form.destinationCode1.value=="non")
{returnvalue=false;errorstr+="请输入往返城市\n";}
if(form.startCode1.value==form.destinationCode1.value)
{returnvalue=false;errorstr+="出发/到达城市不能相同\n";}
if(stringToDate(form.takeoffDate2.value)<stringToDate(form.takeoffDate1.value))
{returnvalue=false
errorstr+="返程时间不得早于出发时间\n";}}
else if(form.triptype[2].checked)
{if(!isDateString(form.takeoffDate1.value))
{returnvalue=false;errorstr+="请输入正确的第一出发日期\n YYYY-MM-DD\n";}
if(!isDateString(form.takeoffDate2.value))
{returnvalue=false;errorstr+="请输入正确的第二出发日期\n YYYY-MM-DD\n";}
if(!isDateString(form.takeoffDate3.value))
{returnvalue=false;errorstr+="请输入正确的第三出发日期\n YYYY-MM-DD\n";}
if(stringToDate(form.takeoffDate1.value)<=new Date())
{returnvalue=false
errorstr+="您输入的日期无效\n";}
if(form.startCode1.value=="non"||form.destinationCode1.value=="non"||form.startCode2.value=="non"||form.startCode3.value=="non"||form.destinationCode2.value=="non"||form.destinationCode3.value=="non")
{returnvalue=false;errorstr+="请输入正确的出发/到达城市\n";}
if(form.startCode1.value==form.destinationCode1.value||form.startCode2.value==form.destinationCode2.value||form.startCode3.value==form.destinationCode3.value)
{returnvalue=false;errorstr+="出发/到达城市不能相同\n";}
if(stringToDate(form.takeoffDate2.value)<stringToDate(form.takeoffDate1.value))
{returnvalue=false;errorstr+="第二出发日期不得晚于第一出发日期\n";}
if(stringToDate(form.takeoffDate3.value)<stringToDate(form.takeoffDate2.value))
{returnvalue=false
errorstr+="第三出发日期不得晚于第二出发日期\n";}}
if(!returnvalue)
alert(errorstr);c_hostname=location.hostname
c_hostname=c_hostname.split(".")
if(c_hostname[0]=="leiyu"||c_hostname[0]=="sinatravel"||c_hostname[0]=="hiwing"||c_hostname[0]=="china"||c_hostname[0]=="zhongsou"||c_hostname[0]=="24hotel"){form.action="http://"+c_hostname[0]+".yoee.net/waiting.jsp"}
return returnvalue;}
function checkAllNew(form)
{var returnvalue=true;var errorstr="";if(!isDateString(form.takeoffDate1.value))
{returnvalue=false;errorstr+="请输入正确的出发日期\n YYYY-MM-DD\n";}
if(form.takeoffDate2.value!=""){form.triptype.value="2";if(!isDateString(form.takeoffDate2.value))
{returnvalue=false;errorstr+="请输入正确的返程日期\n YYYY-MM-DD\n";}
else{if(stringToDate(form.takeoffDate2.value)<stringToDate(form.takeoffDate1.value))
{returnvalue=false
errorstr+="返程时间不得早于出发时间\n";}}}
else
form.triptype.value="1";var d=new Date();var s=d.getFullYear()+"-"+(d.getMonth()+1)+"-"+d.getDate();if(stringToDate(form.takeoffDate1.value)<stringToDate(s))
{returnvalue=false
errorstr+="您输入的日期无效\n";}
if(form.startCode1.value=="non"||form.destinationCode1.value=="non")
{returnvalue=false;errorstr+="请输入到达城市\n";}
if(form.startCode1.value==form.destinationCode1.value)
{returnvalue=false;errorstr+="出发/到达城市不能相同\n";}
if(!returnvalue)
alert(errorstr);c_hostname=location.hostname
c_hostname=c_hostname.split(".")
if(c_hostname[0]=="leiyu"||c_hostname[0]=="sinatravel"||c_hostname[0]=="hiwing"||c_hostname[0]=="china"||c_hostname[0]=="zhongsou"||c_hostname[0]=="24hotel"){form.action="http://"+c_hostname[0]+".yoee.net/waiting.jsp"}
return returnvalue;}
var popWin1=false
var popWin2=false
var popWin3=false
var popWin4=false
var popWin5=false
var popWin6=false
var popWin7=false
var popWin8=false
var popFeatures="toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,left=10,top=10,width=397,height=243"
var popName="popWin"
function getpop(item)
{var popURL='http://www.yoee.com/popWin/popWin'+item+'.htm';item=item*1;switch(item)
{case 1:if(popWin1)
{window.open(popURL,popName,popFeatures);}
break;case 2:if(popWin2)
{window.open(popURL,popName,popFeatures);}
break;case 3:if(popWin3)
{window.open(popURL,popName,popFeatures);}
break;case 4:if(popWin4)
{window.open(popURL,popName,popFeatures);}
break;case 5:if(popWin5)
{window.open(popURL,popName,popFeatures);}
break;case 6:if(popWin6)
{window.open(popURL,popName,popFeatures);}
break;case 7:if(popWin7)
{window.open(popURL,popName,popFeatures);}
break;case 8:if(popWin8)
{window.open(popURL,popName,popFeatures);}
break;}}
var movx=null;function movstar(a,time){movx=setInterval("mov("+a+")",time);}
var current_count_horiz_scroll=0;var unit_horiz_scroll=10;var total_horiz_scroll=0;function mov_horiz_star(a,time){total_horiz_scroll=a;current_count_horiz_scroll=0;do_mov_horiz_star();}
function do_mov_horiz_star(){var abs_current_count_horiz_scroll=Math.abs(current_count_horiz_scroll);var abs_total_horiz_scroll=Math.abs(total_horiz_scroll)
if(abs_current_count_horiz_scroll<abs_total_horiz_scroll){var tmp=unit_horiz_scroll;if((abs_current_count_horiz_scroll+unit_horiz_scroll)>abs_total_horiz_scroll)tmp=abs_total_horiz_scroll-abs_current_count_horiz_scroll;if(total_horiz_scroll<0)tmp=0-tmp;mov_horiz(tmp);current_count_horiz_scroll=current_count_horiz_scroll+tmp;setTimeout("do_mov_horiz_star()",10);}else{var tmp=1;var tmp2=1;var tmp3=1;}}
function movover(){if(movx!=null){clearInterval(movx);clearTimeout(movx);}}
function mov(a){scrollx=new_date.document.body.scrollLeft;scrolly=new_date.document.body.scrollTop;scrolly=scrolly+a;new_date.window.scroll(scrollx,scrolly);}
function mov_horiz(a){scrollx=new_date.document.body.scrollLeft;scrolly=new_date.document.body.scrollTop;scrollx=scrollx+a;new_date.window.scroll(scrollx,scrolly);}
function o_down(theobject){}
function o_up(theobject){}
function wback(){if(new_date.history.length==0){window.history.back();}
else{new_date.history.back();}}
var auto_mov_last=null;var auto_mov_way=1;function auto_mov(time){scrollx=new_date.document.body.scrollLeft;scrolly=new_date.document.body.scrollTop;scrolly=scrolly+auto_mov_way;new_date.window.scroll(scrollx,scrolly);if(auto_mov_last==new_date.document.body.scrollTop){auto_mov_way=0-auto_mov_way;}
auto_mov_last=new_date.document.body.scrollTop
movx=setTimeout("auto_mov("+time+")",time);}
if(configDateType!='undefined'&&configDateType!=''){configDateType=configDateType;}else{var configDateType='iso';}
var configAutoRollOver=true;var calendarFormatString='';var calendarIfFormat='';setConfigDateType(configDateType);function dateBocksKeyListener(event){var keyCode=event.keyCode?event.keyCode:event.which?event.which:event.charCode;if(keyCode==13||keyCode==10){return false;}}
function windowProperties(param_properties){var oRegex=new RegExp('');oRegex.compile("(?:^|,)([^=]+)=(\\d+|yes|no|auto)",'gim');var oProperties=new Object();var oPropertiesMatch;while((oPropertiesMatch=oRegex.exec(param_properties))!=null){var sValue=oPropertiesMatch[2];if(sValue==('yes'||'1')){oProperties[oPropertiesMatch[1]]=true;}else if((!isNaN(sValue)&&sValue!=0)||('auto'==sValue)){oProperties[oPropertiesMatch[1]]=sValue;}}
return oProperties;}
function windowOpenCenter(window_url,window_name,window_properties){try{var oProperties=windowProperties(window_properties);w=parseInt(oProperties['width']);h=parseInt(oProperties['height']);w=w>0?w:640;h=h>0?h:480;if(screen){t=(screen.height-h)/2;l=(screen.width-w)/2;}else{t=250;l=250;}
window_properties=(w>0?",width="+w:"")+(h>0?",height="+h:"")+(t>0?",top="+t:"")+(l>0?",left="+l:"")+","+window_properties.replace(/,(width=\s*\d+\s*|height=\s*\d+\s*|top=\s*\d+\s*||left=\s*\d+\s*)/gi,"");return window.open(window_url,window_name,window_properties);}catch(e){};}
Array.prototype.indexOf=function(item){for(var i=0;i<this.length;i++){if(this[i]==item){return i;}}
return-1;};Array.prototype.filter=function(test){var matches=[];for(var i=0;i<this.length;i++){if(test(this[i])){matches[matches.length]=this[i];}}
return matches;};String.prototype.right=function(intLength){if(intLength>=this.length)
return this;else
return this.substr(this.length-intLength,intLength);};String.prototype.trim=function(){return this.replace(/^\s+|\s+$/,'');};var monthNames="January February March April May June July August September October November December".split(" ");var weekdayNames="Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" ");function parseMonth(month){var matches=monthNames.filter(function(item){return new RegExp("^"+month,"i").test(item);});if(matches.length==0){throw new Error("Invalid month string");}
if(matches.length<1){throw new Error("Ambiguous month");}
return monthNames.indexOf(matches[0]);}
function parseWeekday(weekday){var matches=weekdayNames.filter(function(item){return new RegExp("^"+weekday,"i").test(item);});if(matches.length==0){throw new Error("Invalid day string");}
if(matches.length<1){throw new Error("Ambiguous weekday");}
return weekdayNames.indexOf(matches[0]);}
function DateInRange(yyyy,mm,dd)
{if(mm<0||mm>11)
throw new Error('Invalid month value.  Valid months values are 1 to 12');if(!configAutoRollOver){var d=(11==mm)?new Date(yyyy+1,0,0):new Date(yyyy,mm+1,0);if(dd<1||dd>d.getDate())
throw new Error('Invalid date value.  Valid date values for '+monthNames[mm]+' are 1 to '+d.getDate().toString());}
return true;}
function getDateObj(yyyy,mm,dd){var obj=new Date();obj.setDate(1);obj.setYear(yyyy);obj.setMonth(mm);obj.setDate(dd);return obj;}
var dateParsePatterns=[{re:/^tod|now/i,handler:function(){return new Date();}},{re:/^tom/i,handler:function(){var d=new Date();d.setDate(d.getDate()+1);return d;}},{re:/^yes/i,handler:function(){var d=new Date();d.setDate(d.getDate()-1);return d;}},{re:/^(\d{1,2})(st|nd|rd|th)?$/i,handler:function(bits){var d=new Date();var yyyy=d.getFullYear();var dd=parseInt(bits[1],10);var mm=d.getMonth();if(DateInRange(yyyy,mm,dd))
return getDateObj(yyyy,mm,dd);}},{re:/^(\d{1,2})(?:st|nd|rd|th)? (?:of\s)?(\w+)$/i,handler:function(bits){var d=new Date();var yyyy=d.getFullYear();var dd=parseInt(bits[1],10);var mm=parseMonth(bits[2]);if(DateInRange(yyyy,mm,dd))
return getDateObj(yyyy,mm,dd);}},{re:/^(\d{1,2})(?:st|nd|rd|th)? (?:of )?(\w+),? (\d{4})$/i,handler:function(bits){var d=new Date();d.setDate(parseInt(bits[1],10));d.setMonth(parseMonth(bits[2]));d.setYear(bits[3]);return d;}},{re:/^(\w+) (\d{1,2})(?:st|nd|rd|th)?$/i,handler:function(bits){var d=new Date();var yyyy=d.getFullYear();var dd=parseInt(bits[2],10);var mm=parseMonth(bits[1]);if(DateInRange(yyyy,mm,dd))
return getDateObj(yyyy,mm,dd);}},{re:/^(\w+) (\d{1,2})(?:st|nd|rd|th)?,? (\d{4})$/i,handler:function(bits){var yyyy=parseInt(bits[3],10);var dd=parseInt(bits[2],10);var mm=parseMonth(bits[1]);if(DateInRange(yyyy,mm,dd))
return getDateObj(yyyy,mm,dd);}},{re:/((next|last)\s(week|month|year))/i,handler:function(bits){var objDate=new Date();var dd=objDate.getDate();var mm=objDate.getMonth();var yyyy=objDate.getFullYear();switch(bits[3]){case'week':var newDay=(bits[2]=='next')?(dd+7):(dd-7);objDate.setDate(newDay);break;case'month':var newMonth=(bits[2]=='next')?(mm+1):(mm-1);objDate.setMonth(newMonth);break;case'year':var newYear=(bits[2]=='next')?(yyyy+1):(yyyy-1);objDate.setYear(newYear);break;}
return objDate;}},{re:/^next (\w+)$/i,handler:function(bits){var d=new Date();var day=d.getDay();var newDay=parseWeekday(bits[1]);var addDays=newDay-day;if(newDay<=day){addDays+=7;}
d.setDate(d.getDate()+addDays);return d;}},{re:/^last (\w+)$/i,handler:function(bits){var d=new Date();var wd=d.getDay();var nwd=parseWeekday(bits[1]);var addDays=(-1*(wd+7-nwd))%7;if(0==addDays)
addDays=-7;d.setDate(d.getDate()+addDays);return d;}},{re:/(\d{1,2})\/(\d{1,2})\/(\d{4})/,handler:function(bits){if(configDateType=='dd/mm/yyyy'){var yyyy=parseInt(bits[3],10);var dd=parseInt(bits[1],10);var mm=parseInt(bits[2],10)-1;}else{var yyyy=parseInt(bits[3],10);var dd=parseInt(bits[2],10);var mm=parseInt(bits[1],10)-1;}
if(DateInRange(yyyy,mm,dd))
return getDateObj(yyyy,mm,dd);}},{re:/(\d{1,2})\/(\d{1,2})\/(\d{1,2})/,handler:function(bits){var d=new Date();var yyyy=d.getFullYear()-(d.getFullYear()%100)+parseInt(bits[3],10);var dd=parseInt(bits[2],10);var mm=parseInt(bits[1],10)-1;if(DateInRange(yyyy,mm,dd))
return getDateObj(yyyy,mm,dd);}},{re:/(\d{1,2})\/(\d{1,2})/,handler:function(bits){var d=new Date();var yyyy=d.getFullYear();var dd=parseInt(bits[2],10);var mm=parseInt(bits[1],10)-1;if(DateInRange(yyyy,mm,dd))
return getDateObj(yyyy,mm,dd);}},{re:/(\d{1,2})-(\d{1,2})-(\d{4})/,handler:function(bits){if(configDateType=='dd-mm-yyyy'){var yyyy=parseInt(bits[3],10);var dd=parseInt(bits[1],10);var mm=parseInt(bits[2],10)-1;}else{var yyyy=parseInt(bits[3],10);var dd=parseInt(bits[2],10);var mm=parseInt(bits[1],10)-1;}
if(DateInRange(yyyy,mm,dd)){return getDateObj(yyyy,mm,dd);}}},{re:/(\d{1,2})\.(\d{1,2})\.(\d{4})/,handler:function(bits){var dd=parseInt(bits[1],10);var mm=parseInt(bits[2],10)-1;var yyyy=parseInt(bits[3],10);if(DateInRange(yyyy,mm,dd))
return getDateObj(yyyy,mm,dd);}},{re:/(\d{4})-(\d{1,2})-(\d{1,2})/,handler:function(bits){var yyyy=parseInt(bits[1],10);var dd=parseInt(bits[3],10);var mm=parseInt(bits[2],10)-1;if(DateInRange(yyyy,mm,dd))
return getDateObj(yyyy,mm,dd);}},{re:/(\d{1,2})-(\d{1,2})-(\d{1,2})/,handler:function(bits){var d=new Date();var yyyy=d.getFullYear()-(d.getFullYear()%100)+parseInt(bits[1],10);var dd=parseInt(bits[3],10);var mm=parseInt(bits[2],10)-1;if(DateInRange(yyyy,mm,dd))
return getDateObj(yyyy,mm,dd);}},{re:/(\d{1,2})-(\d{1,2})/,handler:function(bits){var d=new Date();var yyyy=d.getFullYear();var dd=parseInt(bits[2],10);var mm=parseInt(bits[1],10)-1;if(DateInRange(yyyy,mm,dd))
return getDateObj(yyyy,mm,dd);}},{re:/(^mon.*|^tue.*|^wed.*|^thu.*|^fri.*|^sat.*|^sun.*)/i,handler:function(bits){var d=new Date();var day=d.getDay();var newDay=parseWeekday(bits[1]);var addDays=newDay-day;if(newDay<=day){addDays+=7;}
d.setDate(d.getDate()+addDays);return d;}},];function parseDateString(s){for(var i=0;i<dateParsePatterns.length;i++){var re=dateParsePatterns[i].re;var handler=dateParsePatterns[i].handler;var bits=re.exec(s);if(bits){return handler(bits);}}
throw new Error("Invalid date string");}
function magicDateOnlyOnSubmit(id,event){var keyCode=event.keyCode?event.keyCode:event.which?event.which:event.charCode;if(keyCode==13||keyCode==10){magicDate(id);}}
function magicDate(id,onlyOnSubmit){var input=document.getElementById(id);var messagespan=input.id+'Msg';try{if(input.value=='')
{if(configDateType==null)
configDateType='yyyy-mm-dd';input.className='';document.getElementById(messagespan).innerHTML=configDateType;document.getElementById(messagespan).className='normal';return;}
var d=parseDateString(input.value);var day=(d.getDate()<=9)?'0'+d.getDate().toString():d.getDate();var month=((d.getMonth()+1)<=9)?'0'+(d.getMonth()+1):(d.getMonth()+1);switch(configDateType){case'dd/mm/yyyy':input.value=day+'/'+month+'/'+d.getFullYear();break;case'dd-mm-yyyy':input.value=day+'-'+month+'-'+d.getFullYear();break;case'mm/dd/yyyy':case'us':input.value=month+'/'+day+'/'+d.getFullYear();break;case'mm.dd.yyyy':case'de':input.value=month+'.'+day+'.'+d.getFullYear();break;case'iso':case'yyyy-mm-dd':default:input.value=d.getFullYear()+'-'+month+'-'+day;break;}
input.className='';document.getElementById(messagespan).className='normal';}
catch(e){input.className='error';var message=e.message;if(message.indexOf('is null or not an object')>-1){message='Invalid date string';}
document.getElementById(messagespan).innerHTML=message;document.getElementById(messagespan).className='error';}}
function setConfigDateType(type){switch(configDateType){case'mm/dd/yyyy':case'us':calendarIfFormat='%m/%d/%Y';calendarFormatString='mm/dd/yyyy';break;case'mm.dd.yyyy':case'de':calendarIfFormat='%m.%d.%Y';calendarFormatString='mm.dd.yyyy';break;case'dd/mm/yyyy':calendarIfFormat='%d/%m/%Y';calendarFormatString='dd/mm/yyyy';break;case'dd-mm-yyyy':calendarIfFormat='%d-%m-%Y';calendarFormatString='dd-mm-yyyy';break;case'yyyy-mm-dd':case'iso':default:calendarIfFormat='%Y-%m-%d';calendarFormatString='yyyy-mm-dd';break;}}
Calendar=function(firstDayOfWeek,dateStr,onSelected,onClose){this.activeDiv=null;this.currentDateEl=null;this.getDateStatus=null;this.getDateToolTip=null;this.getDateText=null;this.timeout=null;this.onSelected=onSelected||null;this.onClose=onClose||null;this.dragging=false;this.hidden=false;this.minYear=1970;this.maxYear=2050;this.dateFormat=Calendar._TT["DEF_DATE_FORMAT"];this.ttDateFormat=Calendar._TT["TT_DATE_FORMAT"];this.isPopup=true;this.weekNumbers=true;this.firstDayOfWeek=typeof firstDayOfWeek=="number"?firstDayOfWeek:Calendar._FD;this.showsOtherMonths=false;this.dateStr=dateStr;this.ar_days=null;this.showsTime=false;this.time24=true;this.yearStep=2;this.hiliteToday=true;this.multiple=null;this.table=null;this.element=null;this.tbody=null;this.firstdayname=null;this.monthsCombo=null;this.yearsCombo=null;this.hilitedMonth=null;this.activeMonth=null;this.hilitedYear=null;this.activeYear=null;this.dateClicked=false;if(typeof Calendar._SDN=="undefined"){if(typeof Calendar._SDN_len=="undefined")
Calendar._SDN_len=3;var ar=new Array();for(var i=8;i>0;){ar[--i]=Calendar._DN[i].substr(0,Calendar._SDN_len);}
Calendar._SDN=ar;if(typeof Calendar._SMN_len=="undefined")
Calendar._SMN_len=3;ar=new Array();for(var i=12;i>0;){ar[--i]=Calendar._MN[i].substr(0,Calendar._SMN_len);}
Calendar._SMN=ar;}};Calendar._C=null;Calendar.is_ie=(/msie/i.test(navigator.userAgent)&&!/opera/i.test(navigator.userAgent));Calendar.is_ie5=(Calendar.is_ie&&/msie 5\.0/i.test(navigator.userAgent));Calendar.is_opera=/opera/i.test(navigator.userAgent);Calendar.is_khtml=/Konqueror|Safari|KHTML/i.test(navigator.userAgent);Calendar.getAbsolutePos=function(el){var SL=0,ST=0;var is_div=/^div$/i.test(el.tagName);if(is_div&&el.scrollLeft)
SL=el.scrollLeft;if(is_div&&el.scrollTop)
ST=el.scrollTop;var r={x:el.offsetLeft-SL,y:el.offsetTop-ST};if(el.offsetParent){var tmp=this.getAbsolutePos(el.offsetParent);r.x+=tmp.x;r.y+=tmp.y;}
return r;};Calendar.isRelated=function(el,evt){var related=evt.relatedTarget;if(!related){var type=evt.type;if(type=="mouseover"){related=evt.fromElement;}else if(type=="mouseout"){related=evt.toElement;}}
while(related){if(related==el){return true;}
related=related.parentNode;}
return false;};Calendar.removeClass=function(el,className){if(!(el&&el.className)){return;}
var cls=el.className.split(" ");var ar=new Array();for(var i=cls.length;i>0;){if(cls[--i]!=className){ar[ar.length]=cls[i];}}
el.className=ar.join(" ");};Calendar.addClass=function(el,className){Calendar.removeClass(el,className);el.className+=" "+className;};Calendar.getElement=function(ev){var f=Calendar.is_ie?window.event.srcElement:ev.currentTarget;while(f.nodeType!=1||/^div$/i.test(f.tagName))
f=f.parentNode;return f;};Calendar.getTargetElement=function(ev){var f=Calendar.is_ie?window.event.srcElement:ev.target;while(f.nodeType!=1)
f=f.parentNode;return f;};Calendar.stopEvent=function(ev){ev||(ev=window.event);if(Calendar.is_ie){ev.cancelBubble=true;ev.returnValue=false;}else{ev.preventDefault();ev.stopPropagation();}
return false;};Calendar.addEvent=function(el,evname,func){if(el.attachEvent){el.attachEvent("on"+evname,func);}else if(el.addEventListener){el.addEventListener(evname,func,true);}else{el["on"+evname]=func;}};Calendar.removeEvent=function(el,evname,func){if(el.detachEvent){el.detachEvent("on"+evname,func);}else if(el.removeEventListener){el.removeEventListener(evname,func,true);}else{el["on"+evname]=null;}};Calendar.createElement=function(type,parent){var el=null;if(document.createElementNS){el=document.createElementNS("http://www.w3.org/1999/xhtml",type);}else{el=document.createElement(type);}
if(typeof parent!="undefined"){parent.appendChild(el);}
return el;};Calendar._add_evs=function(el){with(Calendar){addEvent(el,"mouseover",dayMouseOver);addEvent(el,"mousedown",dayMouseDown);addEvent(el,"mouseout",dayMouseOut);if(is_ie){addEvent(el,"dblclick",dayMouseDblClick);el.setAttribute("unselectable",true);}}};Calendar.findMonth=function(el){if(typeof el.month!="undefined"){return el;}else if(typeof el.parentNode.month!="undefined"){return el.parentNode;}
return null;};Calendar.findYear=function(el){if(typeof el.year!="undefined"){return el;}else if(typeof el.parentNode.year!="undefined"){return el.parentNode;}
return null;};Calendar.showMonthsCombo=function(){var cal=Calendar._C;if(!cal){return false;}
var cal=cal;var cd=cal.activeDiv;var mc=cal.monthsCombo;if(cal.hilitedMonth){Calendar.removeClass(cal.hilitedMonth,"hilite");}
if(cal.activeMonth){Calendar.removeClass(cal.activeMonth,"active");}
var mon=cal.monthsCombo.getElementsByTagName("div")[cal.date.getMonth()];Calendar.addClass(mon,"active");cal.activeMonth=mon;var s=mc.style;s.display="block";if(cd.navtype<0)
s.left=cd.offsetLeft+"px";else{var mcw=mc.offsetWidth;if(typeof mcw=="undefined")
mcw=50;s.left=(cd.offsetLeft+cd.offsetWidth-mcw)+"px";}
s.top=(cd.offsetTop+cd.offsetHeight)+"px";};Calendar.showYearsCombo=function(fwd){var cal=Calendar._C;if(!cal){return false;}
var cal=cal;var cd=cal.activeDiv;var yc=cal.yearsCombo;if(cal.hilitedYear){Calendar.removeClass(cal.hilitedYear,"hilite");}
if(cal.activeYear){Calendar.removeClass(cal.activeYear,"active");}
cal.activeYear=null;var Y=cal.date.getFullYear()+(fwd?1:-1);var yr=yc.firstChild;var show=false;for(var i=12;i>0;--i){if(Y>=cal.minYear&&Y<=cal.maxYear){yr.innerHTML=Y;yr.year=Y;yr.style.display="block";show=true;}else{yr.style.display="none";}
yr=yr.nextSibling;Y+=fwd?cal.yearStep:-cal.yearStep;}
if(show){var s=yc.style;s.display="block";if(cd.navtype<0)
s.left=cd.offsetLeft+"px";else{var ycw=yc.offsetWidth;if(typeof ycw=="undefined")
ycw=50;s.left=(cd.offsetLeft+cd.offsetWidth-ycw)+"px";}
s.top=(cd.offsetTop+cd.offsetHeight)+"px";}};Calendar.tableMouseUp=function(ev){var cal=Calendar._C;if(!cal){return false;}
if(cal.timeout){clearTimeout(cal.timeout);}
var el=cal.activeDiv;if(!el){return false;}
var target=Calendar.getTargetElement(ev);ev||(ev=window.event);Calendar.removeClass(el,"active");if(target==el||target.parentNode==el){Calendar.cellClick(el,ev);}
var mon=Calendar.findMonth(target);var date=null;if(mon){date=new Date(cal.date);if(mon.month!=date.getMonth()){date.setMonth(mon.month);cal.setDate(date);cal.dateClicked=false;cal.callHandler();}}else{var year=Calendar.findYear(target);if(year){date=new Date(cal.date);if(year.year!=date.getFullYear()){date.setFullYear(year.year);cal.setDate(date);cal.dateClicked=false;cal.callHandler();}}}
with(Calendar){removeEvent(document,"mouseup",tableMouseUp);removeEvent(document,"mouseover",tableMouseOver);removeEvent(document,"mousemove",tableMouseOver);cal._hideCombos();_C=null;return stopEvent(ev);}};Calendar.tableMouseOver=function(ev){var cal=Calendar._C;if(!cal){return;}
var el=cal.activeDiv;var target=Calendar.getTargetElement(ev);if(target==el||target.parentNode==el){Calendar.addClass(el,"hilite active");Calendar.addClass(el.parentNode,"rowhilite");}else{if(typeof el.navtype=="undefined"||(el.navtype!=50&&(el.navtype==0||Math.abs(el.navtype)>2)))
Calendar.removeClass(el,"active");Calendar.removeClass(el,"hilite");Calendar.removeClass(el.parentNode,"rowhilite");}
ev||(ev=window.event);if(el.navtype==50&&target!=el){var pos=Calendar.getAbsolutePos(el);var w=el.offsetWidth;var x=ev.clientX;var dx;var decrease=true;if(x>pos.x+w){dx=x-pos.x-w;decrease=false;}else
dx=pos.x-x;if(dx<0)dx=0;var range=el._range;var current=el._current;var count=Math.floor(dx/10)%range.length;for(var i=range.length;--i>=0;)
if(range[i]==current)
break;while(count-->0)
if(decrease){if(--i<0)
i=range.length-1;}else if(++i>=range.length)
i=0;var newval=range[i];el.innerHTML=newval;cal.onUpdateTime();}
var mon=Calendar.findMonth(target);if(mon){if(mon.month!=cal.date.getMonth()){if(cal.hilitedMonth){Calendar.removeClass(cal.hilitedMonth,"hilite");}
Calendar.addClass(mon,"hilite");cal.hilitedMonth=mon;}else if(cal.hilitedMonth){Calendar.removeClass(cal.hilitedMonth,"hilite");}}else{if(cal.hilitedMonth){Calendar.removeClass(cal.hilitedMonth,"hilite");}
var year=Calendar.findYear(target);if(year){if(year.year!=cal.date.getFullYear()){if(cal.hilitedYear){Calendar.removeClass(cal.hilitedYear,"hilite");}
Calendar.addClass(year,"hilite");cal.hilitedYear=year;}else if(cal.hilitedYear){Calendar.removeClass(cal.hilitedYear,"hilite");}}else if(cal.hilitedYear){Calendar.removeClass(cal.hilitedYear,"hilite");}}
return Calendar.stopEvent(ev);};Calendar.tableMouseDown=function(ev){if(Calendar.getTargetElement(ev)==Calendar.getElement(ev)){return Calendar.stopEvent(ev);}};Calendar.calDragIt=function(ev){var cal=Calendar._C;if(!(cal&&cal.dragging)){return false;}
var posX;var posY;if(Calendar.is_ie){posY=window.event.clientY+document.body.scrollTop;posX=window.event.clientX+document.body.scrollLeft;}else{posX=ev.pageX;posY=ev.pageY;}
cal.hideShowCovered();var st=cal.element.style;st.left=(posX-cal.xOffs)+"px";st.top=(posY-cal.yOffs)+"px";return Calendar.stopEvent(ev);};Calendar.calDragEnd=function(ev){var cal=Calendar._C;if(!cal){return false;}
cal.dragging=false;with(Calendar){removeEvent(document,"mousemove",calDragIt);removeEvent(document,"mouseup",calDragEnd);tableMouseUp(ev);}
cal.hideShowCovered();};Calendar.dayMouseDown=function(ev){var el=Calendar.getElement(ev);if(el.disabled){return false;}
var cal=el.calendar;cal.activeDiv=el;Calendar._C=cal;if(el.navtype!=300)with(Calendar){if(el.navtype==50){el._current=el.innerHTML;addEvent(document,"mousemove",tableMouseOver);}else
addEvent(document,Calendar.is_ie5?"mousemove":"mouseover",tableMouseOver);addClass(el,"hilite active");addEvent(document,"mouseup",tableMouseUp);}else if(cal.isPopup){cal._dragStart(ev);}
if(el.navtype==-1||el.navtype==1){if(cal.timeout)clearTimeout(cal.timeout);cal.timeout=setTimeout("Calendar.showMonthsCombo()",250);}else if(el.navtype==-2||el.navtype==2){if(cal.timeout)clearTimeout(cal.timeout);cal.timeout=setTimeout((el.navtype>0)?"Calendar.showYearsCombo(true)":"Calendar.showYearsCombo(false)",250);}else{cal.timeout=null;}
return Calendar.stopEvent(ev);};Calendar.dayMouseDblClick=function(ev){Calendar.cellClick(Calendar.getElement(ev),ev||window.event);if(Calendar.is_ie){document.selection.empty();}};Calendar.dayMouseOver=function(ev){var el=Calendar.getElement(ev);if(Calendar.isRelated(el,ev)||Calendar._C||el.disabled){return false;}
if(el.ttip){if(el.ttip.substr(0,1)=="_"){el.ttip=el.caldate.print(el.calendar.ttDateFormat)+el.ttip.substr(1);}
el.calendar.tooltips.innerHTML=el.ttip;}
if(el.navtype!=300){Calendar.addClass(el,"hilite");if(el.caldate){Calendar.addClass(el.parentNode,"rowhilite");}}
return Calendar.stopEvent(ev);};Calendar.dayMouseOut=function(ev){with(Calendar){var el=getElement(ev);if(isRelated(el,ev)||_C||el.disabled)
return false;removeClass(el,"hilite");if(el.caldate)
removeClass(el.parentNode,"rowhilite");if(el.calendar)
el.calendar.tooltips.innerHTML=_TT["SEL_DATE"];return stopEvent(ev);}};Calendar.cellClick=function(el,ev){var cal=el.calendar;var closing=false;var newdate=false;var date=null;if(typeof el.navtype=="undefined"){if(cal.currentDateEl){Calendar.removeClass(cal.currentDateEl,"selected");Calendar.addClass(el,"selected");closing=(cal.currentDateEl==el);if(!closing){cal.currentDateEl=el;}}
cal.date.setDateOnly(el.caldate);date=cal.date;var other_month=!(cal.dateClicked=!el.otherMonth);if(!other_month&&!cal.currentDateEl)
cal._toggleMultipleDate(new Date(date));else
newdate=!el.disabled;if(other_month)
cal._init(cal.firstDayOfWeek,date);}else{if(el.navtype==200){Calendar.removeClass(el,"hilite");cal.callCloseHandler();return;}
date=new Date(cal.date);if(el.navtype==0)
date.setDateOnly(new Date());cal.dateClicked=false;var year=date.getFullYear();var mon=date.getMonth();function setMonth(m){var day=date.getDate();var max=date.getMonthDays(m);if(day>max){date.setDate(max);}
date.setMonth(m);};switch(el.navtype){case 400:Calendar.removeClass(el,"hilite");var text=Calendar._TT["ABOUT"];if(typeof text!="undefined"){text+=cal.showsTime?Calendar._TT["ABOUT_TIME"]:"";}else{text="Help and about box text is not translated into this language.\n"+"If you know this language and you feel generous please update\n"+"the corresponding file in \"lang\" subdir to match calendar-en.js\n"+"and send it back to <mihai_bazon@yahoo.com> to get it into the distribution  ;-)\n\n"+"Thank you!\n"+"http://dynarch.com/mishoo/calendar.epl\n";}
alert(text);return;case-2:if(year>cal.minYear){date.setFullYear(year-1);}
break;case-1:if(mon>0){setMonth(mon-1);}else if(year-->cal.minYear){date.setFullYear(year);setMonth(11);}
break;case 1:if(mon<11){setMonth(mon+1);}else if(year<cal.maxYear){date.setFullYear(year+1);setMonth(0);}
break;case 2:if(year<cal.maxYear){date.setFullYear(year+1);}
break;case 100:cal.setFirstDayOfWeek(el.fdow);return;case 50:var range=el._range;var current=el.innerHTML;for(var i=range.length;--i>=0;)
if(range[i]==current)
break;if(ev&&ev.shiftKey){if(--i<0)
i=range.length-1;}else if(++i>=range.length)
i=0;var newval=range[i];el.innerHTML=newval;cal.onUpdateTime();return;case 0:if((typeof cal.getDateStatus=="function")&&cal.getDateStatus(date,date.getFullYear(),date.getMonth(),date.getDate())){return false;}
break;}
if(!date.equalsTo(cal.date)){cal.setDate(date);newdate=true;}else if(el.navtype==0)
newdate=closing=true;}
if(newdate){ev&&cal.callHandler();}
if(closing){Calendar.removeClass(el,"hilite");ev&&cal.callCloseHandler();}};Calendar.prototype.create=function(_par){var parent=null;if(!_par){parent=document.getElementsByTagName("body")[0];this.isPopup=true;}else{parent=_par;this.isPopup=false;}
this.date=this.dateStr?new Date(this.dateStr):new Date();var table=Calendar.createElement("table");this.table=table;table.cellSpacing=0;table.cellPadding=0;table.calendar=this;Calendar.addEvent(table,"mousedown",Calendar.tableMouseDown);var div=Calendar.createElement("div");this.element=div;div.className="calendar";if(this.isPopup){div.style.position="absolute";div.style.display="none";}
div.appendChild(table);var thead=Calendar.createElement("thead",table);var cell=null;var row=null;var cal=this;var hh=function(text,cs,navtype){cell=Calendar.createElement("td",row);cell.colSpan=cs;cell.className="button";if(navtype!=0&&Math.abs(navtype)<=2)
cell.className+=" nav";Calendar._add_evs(cell);cell.calendar=cal;cell.navtype=navtype;cell.innerHTML="<div unselectable='on'>"+text+"</div>";return cell;};row=Calendar.createElement("tr",thead);var title_length=6;(this.isPopup)&&--title_length;(this.weekNumbers)&&++title_length;hh("?",1,400).ttip=Calendar._TT["INFO"];this.title=hh("",title_length,300);this.title.className="title";if(this.isPopup){this.title.ttip=Calendar._TT["DRAG_TO_MOVE"];this.title.style.cursor="move";hh("&#x00d7;",1,200).ttip=Calendar._TT["CLOSE"];}
row=Calendar.createElement("tr",thead);row.className="headrow";this._nav_py=hh("&#x00ab;",1,-2);this._nav_py.ttip=Calendar._TT["PREV_YEAR"];this._nav_pm=hh("&#x2039;",1,-1);this._nav_pm.ttip=Calendar._TT["PREV_MONTH"];this._nav_now=hh(Calendar._TT["TODAY"],this.weekNumbers?4:3,0);this._nav_now.ttip=Calendar._TT["GO_TODAY"];this._nav_nm=hh("&#x203a;",1,1);this._nav_nm.ttip=Calendar._TT["NEXT_MONTH"];this._nav_ny=hh("&#x00bb;",1,2);this._nav_ny.ttip=Calendar._TT["NEXT_YEAR"];row=Calendar.createElement("tr",thead);row.className="daynames";if(this.weekNumbers){cell=Calendar.createElement("td",row);cell.className="name wn";cell.innerHTML=Calendar._TT["WK"];}
for(var i=7;i>0;--i){cell=Calendar.createElement("td",row);if(!i){cell.navtype=100;cell.calendar=this;Calendar._add_evs(cell);}}
this.firstdayname=(this.weekNumbers)?row.firstChild.nextSibling:row.firstChild;this._displayWeekdays();var tbody=Calendar.createElement("tbody",table);this.tbody=tbody;for(i=6;i>0;--i){row=Calendar.createElement("tr",tbody);if(this.weekNumbers){cell=Calendar.createElement("td",row);}
for(var j=7;j>0;--j){cell=Calendar.createElement("td",row);cell.calendar=this;Calendar._add_evs(cell);}}
if(this.showsTime){row=Calendar.createElement("tr",tbody);row.className="time";cell=Calendar.createElement("td",row);cell.className="time";cell.colSpan=2;cell.innerHTML=Calendar._TT["TIME"]||"&nbsp;";cell=Calendar.createElement("td",row);cell.className="time";cell.colSpan=this.weekNumbers?4:3;(function(){function makeTimePart(className,init,range_start,range_end){var part=Calendar.createElement("span",cell);part.className=className;part.innerHTML=init;part.calendar=cal;part.ttip=Calendar._TT["TIME_PART"];part.navtype=50;part._range=[];if(typeof range_start!="number")
part._range=range_start;else{for(var i=range_start;i<=range_end;++i){var txt;if(i<10&&range_end>=10)txt='0'+i;else txt=''+i;part._range[part._range.length]=txt;}}
Calendar._add_evs(part);return part;};var hrs=cal.date.getHours();var mins=cal.date.getMinutes();var t12=!cal.time24;var pm=(hrs>12);if(t12&&pm)hrs-=12;var H=makeTimePart("hour",hrs,t12?1:0,t12?12:23);var span=Calendar.createElement("span",cell);span.innerHTML=":";span.className="colon";var M=makeTimePart("minute",mins,0,59);var AP=null;cell=Calendar.createElement("td",row);cell.className="time";cell.colSpan=2;if(t12)
AP=makeTimePart("ampm",pm?"pm":"am",["am","pm"]);else
cell.innerHTML="&nbsp;";cal.onSetTime=function(){var pm,hrs=this.date.getHours(),mins=this.date.getMinutes();if(t12){pm=(hrs>=12);if(pm)hrs-=12;if(hrs==0)hrs=12;AP.innerHTML=pm?"pm":"am";}
H.innerHTML=(hrs<10)?("0"+hrs):hrs;M.innerHTML=(mins<10)?("0"+mins):mins;};cal.onUpdateTime=function(){var date=this.date;var h=parseInt(H.innerHTML,10);if(t12){if(/pm/i.test(AP.innerHTML)&&h<12)
h+=12;else if(/am/i.test(AP.innerHTML)&&h==12)
h=0;}
var d=date.getDate();var m=date.getMonth();var y=date.getFullYear();date.setHours(h);date.setMinutes(parseInt(M.innerHTML,10));date.setFullYear(y);date.setMonth(m);date.setDate(d);this.dateClicked=false;this.callHandler();};})();}else{this.onSetTime=this.onUpdateTime=function(){};}
var tfoot=Calendar.createElement("tfoot",table);row=Calendar.createElement("tr",tfoot);row.className="footrow";cell=hh(Calendar._TT["SEL_DATE"],this.weekNumbers?8:7,300);cell.className="ttip";if(this.isPopup){cell.ttip=Calendar._TT["DRAG_TO_MOVE"];cell.style.cursor="move";}
this.tooltips=cell;div=Calendar.createElement("div",this.element);this.monthsCombo=div;div.className="combo";for(i=0;i<Calendar._MN.length;++i){var mn=Calendar.createElement("div");mn.className=Calendar.is_ie?"label-IEfix":"label";mn.month=i;mn.innerHTML=Calendar._SMN[i];div.appendChild(mn);}
div=Calendar.createElement("div",this.element);this.yearsCombo=div;div.className="combo";for(i=12;i>0;--i){var yr=Calendar.createElement("div");yr.className=Calendar.is_ie?"label-IEfix":"label";div.appendChild(yr);}
this._init(this.firstDayOfWeek,this.date);parent.appendChild(this.element);};Calendar._keyEvent=function(ev){var cal=window._dynarch_popupCalendar;if(!cal||cal.multiple)
return false;(Calendar.is_ie)&&(ev=window.event);var act=(Calendar.is_ie||ev.type=="keypress"),K=ev.keyCode;if(ev.ctrlKey){switch(K){case 37:act&&Calendar.cellClick(cal._nav_pm);break;case 38:act&&Calendar.cellClick(cal._nav_py);break;case 39:act&&Calendar.cellClick(cal._nav_nm);break;case 40:act&&Calendar.cellClick(cal._nav_ny);break;default:return false;}}else switch(K){case 32:Calendar.cellClick(cal._nav_now);break;case 27:act&&cal.callCloseHandler();break;case 37:case 38:case 39:case 40:if(act){var prev,x,y,ne,el,step;prev=K==37||K==38;step=(K==37||K==39)?1:7;function setVars(){el=cal.currentDateEl;var p=el.pos;x=p&15;y=p>>4;ne=cal.ar_days[y][x];};setVars();function prevMonth(){var date=new Date(cal.date);date.setDate(date.getDate()-step);cal.setDate(date);};function nextMonth(){var date=new Date(cal.date);date.setDate(date.getDate()+step);cal.setDate(date);};while(1){switch(K){case 37:if(--x>=0)
ne=cal.ar_days[y][x];else{x=6;K=38;continue;}
break;case 38:if(--y>=0)
ne=cal.ar_days[y][x];else{prevMonth();setVars();}
break;case 39:if(++x<7)
ne=cal.ar_days[y][x];else{x=0;K=40;continue;}
break;case 40:if(++y<cal.ar_days.length)
ne=cal.ar_days[y][x];else{nextMonth();setVars();}
break;}
break;}
if(ne){if(!ne.disabled)
Calendar.cellClick(ne);else if(prev)
prevMonth();else
nextMonth();}}
break;case 13:if(act)
Calendar.cellClick(cal.currentDateEl,ev);break;default:return false;}
return Calendar.stopEvent(ev);};Calendar.prototype._init=function(firstDayOfWeek,date){var today=new Date(),TY=today.getFullYear(),TM=today.getMonth(),TD=today.getDate();this.table.style.visibility="hidden";var year=date.getFullYear();if(year<this.minYear){year=this.minYear;date.setFullYear(year);}else if(year>this.maxYear){year=this.maxYear;date.setFullYear(year);}
this.firstDayOfWeek=firstDayOfWeek;this.date=new Date(date);var month=date.getMonth();var mday=date.getDate();var no_days=date.getMonthDays();date.setDate(1);var day1=(date.getDay()-this.firstDayOfWeek)%7;if(day1<0)
day1+=7;date.setDate(-day1);date.setDate(date.getDate()+1);var row=this.tbody.firstChild;var MN=Calendar._SMN[month];var ar_days=this.ar_days=new Array();var weekend=Calendar._TT["WEEKEND"];var dates=this.multiple?(this.datesCells={}):null;for(var i=0;i<6;++i,row=row.nextSibling){var cell=row.firstChild;if(this.weekNumbers){cell.className="day wn";cell.innerHTML=date.getWeekNumber();cell=cell.nextSibling;}
row.className="daysrow";var hasdays=false,iday,dpos=ar_days[i]=[];for(var j=0;j<7;++j,cell=cell.nextSibling,date.setDate(iday+1)){iday=date.getDate();var wday=date.getDay();cell.className="day";cell.pos=i<<4|j;dpos[j]=cell;var current_month=(date.getMonth()==month);if(!current_month){if(this.showsOtherMonths){cell.className+=" othermonth";cell.otherMonth=true;}else{cell.className="emptycell";cell.innerHTML="&nbsp;";cell.disabled=true;continue;}}else{cell.otherMonth=false;hasdays=true;}
cell.disabled=false;cell.innerHTML=this.getDateText?this.getDateText(date,iday):iday;if(dates)
dates[date.print("%Y%m%d")]=cell;if(this.getDateStatus){var status=this.getDateStatus(date,year,month,iday);if(this.getDateToolTip){var toolTip=this.getDateToolTip(date,year,month,iday);if(toolTip)
cell.title=toolTip;}
if(status===true){cell.className+=" disabled";cell.disabled=true;}else{if(/disabled/i.test(status))
cell.disabled=true;cell.className+=" "+status;}}
if(!cell.disabled){cell.caldate=new Date(date);cell.ttip="_";if(!this.multiple&&current_month&&iday==mday&&this.hiliteToday){cell.className+=" selected";this.currentDateEl=cell;}
if(date.getFullYear()==TY&&date.getMonth()==TM&&iday==TD){cell.className+=" today";cell.ttip+=Calendar._TT["PART_TODAY"];}
if(weekend.indexOf(wday.toString())!=-1)
cell.className+=cell.otherMonth?" oweekend":" weekend";}}
if(!(hasdays||this.showsOtherMonths))
row.className="emptyrow";}
this.title.innerHTML=Calendar._MN[month]+", "+year;this.onSetTime();this.table.style.visibility="visible";this._initMultipleDates();};Calendar.prototype._initMultipleDates=function(){if(this.multiple){if(Prototype){this.muliple.each(function(multiple){var cell=this.datesCells[multiple.key];var d=multiple.value;if(!d)
return;if(cell)
cell.className+=" selected";})}else{for(var i in this.multiple){var cell=this.datesCells[i];var d=this.multiple[i];if(!d)
continue;if(cell)
cell.className+=" selected";}}}};Calendar.prototype._toggleMultipleDate=function(date){if(this.multiple){var ds=date.print("%Y%m%d");var cell=this.datesCells[ds];if(cell){var d=this.multiple[ds];if(!d){Calendar.addClass(cell,"selected");this.multiple[ds]=date;}else{Calendar.removeClass(cell,"selected");delete this.multiple[ds];}}}};Calendar.prototype.setDateToolTipHandler=function(unaryFunction){this.getDateToolTip=unaryFunction;};Calendar.prototype.setDate=function(date){if(!date.equalsTo(this.date)){this._init(this.firstDayOfWeek,date);}};Calendar.prototype.refresh=function(){this._init(this.firstDayOfWeek,this.date);};Calendar.prototype.setFirstDayOfWeek=function(firstDayOfWeek){this._init(firstDayOfWeek,this.date);this._displayWeekdays();};Calendar.prototype.setDateStatusHandler=Calendar.prototype.setDisabledHandler=function(unaryFunction){this.getDateStatus=unaryFunction;};Calendar.prototype.setRange=function(a,z){this.minYear=a;this.maxYear=z;};Calendar.prototype.callHandler=function(){if(this.onSelected){this.onSelected(this,this.date.print(this.dateFormat));}};Calendar.prototype.callCloseHandler=function(){if(this.onClose){this.onClose(this);}
this.hideShowCovered();};Calendar.prototype.destroy=function(){var el=this.element.parentNode;el.removeChild(this.element);Calendar._C=null;window._dynarch_popupCalendar=null;};Calendar.prototype.reparent=function(new_parent){var el=this.element;el.parentNode.removeChild(el);new_parent.appendChild(el);};Calendar._checkCalendar=function(ev){var calendar=window._dynarch_popupCalendar;if(!calendar){return false;}
var el=Calendar.is_ie?Calendar.getElement(ev):Calendar.getTargetElement(ev);for(;el!=null&&el!=calendar.element;el=el.parentNode);if(el==null){window._dynarch_popupCalendar.callCloseHandler();return Calendar.stopEvent(ev);}};Calendar.prototype.show=function(){var rows=this.table.getElementsByTagName("tr");for(var i=rows.length;i>0;){var row=rows[--i];Calendar.removeClass(row,"rowhilite");var cells=row.getElementsByTagName("td");for(var j=cells.length;j>0;){var cell=cells[--j];Calendar.removeClass(cell,"hilite");Calendar.removeClass(cell,"active");}}
this.element.style.display="block";this.hidden=false;if(this.isPopup){window._dynarch_popupCalendar=this;Calendar.addEvent(document,"keydown",Calendar._keyEvent);Calendar.addEvent(document,"keypress",Calendar._keyEvent);Calendar.addEvent(document,"mousedown",Calendar._checkCalendar);}
this.hideShowCovered();};Calendar.prototype.hide=function(){if(this.isPopup){Calendar.removeEvent(document,"keydown",Calendar._keyEvent);Calendar.removeEvent(document,"keypress",Calendar._keyEvent);Calendar.removeEvent(document,"mousedown",Calendar._checkCalendar);}
this.element.style.display="none";this.hidden=true;this.hideShowCovered();};Calendar.prototype.showAt=function(x,y){var s=this.element.style;s.left=x+"px";s.top=y+"px";this.show();};Calendar.prototype.showAtElement=function(el,opts){var self=this;var p=Calendar.getAbsolutePos(el);if(!opts||typeof opts!="string"){this.showAt(p.x,p.y+el.offsetHeight);return true;}
function fixPosition(box){if(box.x<0)
box.x=0;if(box.y<0)
box.y=0;var cp=document.createElement("div");var s=cp.style;s.position="absolute";s.right=s.bottom=s.width=s.height="0px";document.body.appendChild(cp);var br=Calendar.getAbsolutePos(cp);document.body.removeChild(cp);if(Calendar.is_ie){br.y+=document.body.scrollTop;br.x+=document.body.scrollLeft;}else{br.y+=window.scrollY;br.x+=window.scrollX;}
var tmp=box.x+box.width-br.x;if(tmp>0)box.x-=tmp;tmp=box.y+box.height-br.y;if(tmp>0)box.y-=tmp;};this.element.style.display="block";Calendar.continuation_for_the_fucking_khtml_browser=function(){var w=self.element.offsetWidth;var h=self.element.offsetHeight;self.element.style.display="none";var valign=opts.substr(0,1);var halign="l";if(opts.length>1){halign=opts.substr(1,1);}
switch(valign){case"T":p.y-=h;break;case"B":p.y+=el.offsetHeight;break;case"C":p.y+=(el.offsetHeight-h)/2;break;case"t":p.y+=el.offsetHeight-h;break;case"b":break;}
switch(halign){case"L":p.x-=w;break;case"R":p.x+=el.offsetWidth;break;case"C":p.x+=(el.offsetWidth-w)/2;break;case"l":p.x+=el.offsetWidth-w;break;case"r":break;}
p.width=w;p.height=h+40;self.monthsCombo.style.display="none";fixPosition(p);self.showAt(p.x,p.y);};if(Calendar.is_khtml)
setTimeout("Calendar.continuation_for_the_fucking_khtml_browser()",10);else
Calendar.continuation_for_the_fucking_khtml_browser();};Calendar.prototype.setDateFormat=function(str){this.dateFormat=str;};Calendar.prototype.setTtDateFormat=function(str){this.ttDateFormat=str;};Calendar.prototype.parseDate=function(str,fmt){if(!fmt)
fmt=this.dateFormat;this.setDate(Date.parseDate(str,fmt));};Calendar.prototype.hideShowCovered=function(){if(!Calendar.is_ie&&!Calendar.is_opera)
return;function getVisib(obj){var value=obj.style.visibility;if(!value){if(document.defaultView&&typeof(document.defaultView.getComputedStyle)=="function"){if(!Calendar.is_khtml)
value=document.defaultView.getComputedStyle(obj,"").getPropertyValue("visibility");else
value='';}else if(obj.currentStyle){value=obj.currentStyle.visibility;}else
value='';}
return value;};var tags=new Array("applet","iframe","select");var el=this.element;var p=Calendar.getAbsolutePos(el);var EX1=p.x;var EX2=el.offsetWidth+EX1;var EY1=p.y;var EY2=el.offsetHeight+EY1;for(var k=tags.length;k>0;){var ar=document.getElementsByTagName(tags[--k]);var cc=null;for(var i=ar.length;i>0;){cc=ar[--i];p=Calendar.getAbsolutePos(cc);var CX1=p.x;var CX2=cc.offsetWidth+CX1;var CY1=p.y;var CY2=cc.offsetHeight+CY1;if(this.hidden||(CX1>EX2)||(CX2<EX1)||(CY1>EY2)||(CY2<EY1)){if(!cc.__msh_save_visibility){cc.__msh_save_visibility=getVisib(cc);}
cc.style.visibility=cc.__msh_save_visibility;}else{if(!cc.__msh_save_visibility){cc.__msh_save_visibility=getVisib(cc);}
cc.style.visibility="hidden";}}}};Calendar.prototype._displayWeekdays=function(){var fdow=this.firstDayOfWeek;var cell=this.firstdayname;var weekend=Calendar._TT["WEEKEND"];for(var i=0;i<7;++i){cell.className="day name";var realday=(i+fdow)%7;if(i){cell.ttip=Calendar._TT["DAY_FIRST"].replace("%s",Calendar._DN[realday]);cell.navtype=100;cell.calendar=this;cell.fdow=realday;Calendar._add_evs(cell);}
if(weekend.indexOf(realday.toString())!=-1){Calendar.addClass(cell,"weekend");}
cell.innerHTML=Calendar._SDN[(i+fdow)%7];cell=cell.nextSibling;}};Calendar.prototype._hideCombos=function(){this.monthsCombo.style.display="none";this.yearsCombo.style.display="none";};Calendar.prototype._dragStart=function(ev){if(this.dragging){return;}
this.dragging=true;var posX;var posY;if(Calendar.is_ie){posY=window.event.clientY+document.body.scrollTop;posX=window.event.clientX+document.body.scrollLeft;}else{posY=ev.clientY+window.scrollY;posX=ev.clientX+window.scrollX;}
var st=this.element.style;this.xOffs=posX-parseInt(st.left);this.yOffs=posY-parseInt(st.top);with(Calendar){addEvent(document,"mousemove",calDragIt);addEvent(document,"mouseup",calDragEnd);}};Date._MD=new Array(31,28,31,30,31,30,31,31,30,31,30,31);Date.SECOND=1000;Date.MINUTE=60*Date.SECOND;Date.HOUR=60*Date.MINUTE;Date.DAY=24*Date.HOUR;Date.WEEK=7*Date.DAY;Date.parseDate=function(str,fmt){var today=new Date();var y=0;var m=-1;var d=0;var a=str.split(/\W+/);var b=fmt.match(/%./g);var i=0,j=0;var hr=0;var min=0;for(i=0;i<a.length;++i){if(!a[i])
continue;switch(b[i]){case"%d":case"%e":d=parseInt(a[i],10);break;case"%m":m=parseInt(a[i],10)-1;break;case"%Y":case"%y":y=parseInt(a[i],10);(y<100)&&(y+=(y>29)?1900:2000);break;case"%b":case"%B":for(j=0;j<12;++j){if(Calendar._MN[j].substr(0,a[i].length).toLowerCase()==a[i].toLowerCase()){m=j;break;}}
break;case"%H":case"%I":case"%k":case"%l":hr=parseInt(a[i],10);break;case"%P":case"%p":if(/pm/i.test(a[i])&&hr<12)
hr+=12;else if(/am/i.test(a[i])&&hr>=12)
hr-=12;break;case"%M":min=parseInt(a[i],10);break;}}
if(isNaN(y))y=today.getFullYear();if(isNaN(m))m=today.getMonth();if(isNaN(d))d=today.getDate();if(isNaN(hr))hr=today.getHours();if(isNaN(min))min=today.getMinutes();if(y!=0&&m!=-1&&d!=0)
return new Date(y,m,d,hr,min,0);y=0;m=-1;d=0;for(i=0;i<a.length;++i){if(a[i].search(/[a-zA-Z]+/)!=-1){var t=-1;for(j=0;j<12;++j){if(Calendar._MN[j].substr(0,a[i].length).toLowerCase()==a[i].toLowerCase()){t=j;break;}}
if(t!=-1){if(m!=-1){d=m+1;}
m=t;}}else if(parseInt(a[i],10)<=12&&m==-1){m=a[i]-1;}else if(parseInt(a[i],10)>31&&y==0){y=parseInt(a[i],10);(y<100)&&(y+=(y>29)?1900:2000);}else if(d==0){d=a[i];}}
if(y==0)
y=today.getFullYear();if(m!=-1&&d!=0)
return new Date(y,m,d,hr,min,0);return today;};Date.prototype.getMonthDays=function(month){var year=this.getFullYear();if(typeof month=="undefined"){month=this.getMonth();}
if(((0==(year%4))&&((0!=(year%100))||(0==(year%400))))&&month==1){return 29;}else{return Date._MD[month];}};Date.prototype.getDayOfYear=function(){var now=new Date(this.getFullYear(),this.getMonth(),this.getDate(),0,0,0);var then=new Date(this.getFullYear(),0,0,0,0,0);var time=now-then;return Math.floor(time/Date.DAY);};Date.prototype.getWeekNumber=function(){var d=new Date(this.getFullYear(),this.getMonth(),this.getDate(),0,0,0);var DoW=d.getDay();d.setDate(d.getDate()-(DoW+6)%7+3);var ms=d.valueOf();d.setMonth(0);d.setDate(4);return Math.round((ms-d.valueOf())/(7*864e5))+1;};Date.prototype.equalsTo=function(date){return((this.getFullYear()==date.getFullYear())&&(this.getMonth()==date.getMonth())&&(this.getDate()==date.getDate())&&(this.getHours()==date.getHours())&&(this.getMinutes()==date.getMinutes()));};Date.prototype.setDateOnly=function(date){var tmp=new Date(date);this.setDate(1);this.setFullYear(tmp.getFullYear());this.setMonth(tmp.getMonth());this.setDate(tmp.getDate());};Date.prototype.print=function(str){var m=this.getMonth();var d=this.getDate();var y=this.getFullYear();var wn=this.getWeekNumber();var w=this.getDay();var s={};var hr=this.getHours();var pm=(hr>=12);var ir=(pm)?(hr-12):hr;var dy=this.getDayOfYear();if(ir==0)
ir=12;var min=this.getMinutes();var sec=this.getSeconds();s["%a"]=Calendar._SDN[w];s["%A"]=Calendar._DN[w];s["%b"]=Calendar._SMN[m];s["%B"]=Calendar._MN[m];s["%C"]=1+Math.floor(y/100);s["%d"]=(d<10)?("0"+d):d;s["%e"]=d;s["%H"]=(hr<10)?("0"+hr):hr;s["%I"]=(ir<10)?("0"+ir):ir;s["%j"]=(dy<100)?((dy<10)?("00"+dy):("0"+dy)):dy;s["%k"]=hr;s["%l"]=ir;s["%m"]=(m<9)?("0"+(1+m)):(1+m);s["%M"]=(min<10)?("0"+min):min;s["%n"]="\n";s["%p"]=pm?"PM":"AM";s["%P"]=pm?"pm":"am";s["%s"]=Math.floor(this.getTime()/1000);s["%S"]=(sec<10)?("0"+sec):sec;s["%t"]="\t";s["%U"]=s["%W"]=s["%V"]=(wn<10)?("0"+wn):wn;s["%u"]=w+1;s["%w"]=w;s["%y"]=(''+y).substr(2,2);s["%Y"]=y;s["%%"]="%";var re=/%./g;if(!Calendar.is_ie5&&!Calendar.is_khtml)
return str.replace(re,function(par){return s[par]||par;});var a=str.match(re);for(var i=0;i<a.length;i++){var tmp=s[a[i]];if(tmp){re=new RegExp(a[i],'g');str=str.replace(re,tmp);}}
return str;};Date.prototype.__msh_oldSetFullYear=Date.prototype.setFullYear;Date.prototype.setFullYear=function(y){var d=new Date(this);d.__msh_oldSetFullYear(y);if(d.getMonth()!=this.getMonth())
this.setDate(28);this.__msh_oldSetFullYear(y);};window._dynarch_popupCalendar=null;Calendar._DN=new Array
("星期日","星期一","星期二","星期三","星期四","星期五","星期六","星期日");Calendar._SDN=new Array
("日","一","二","三","四","五","六","日");Calendar._MN=new Array
("一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月");Calendar._SMN=new Array
("一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月");Calendar._TT={};Calendar._TT["INFO"]="帮助";Calendar._TT["ABOUT"]="DHTML Date/Time Selector\n"+"(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n"+"For latest version visit: http://www.dynarch.com/projects/calendar/\n"+"Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details."+"\n\n"+"选择日期:\n"+"- 点击 \xab, \xbb 按钮选择年份\n"+"- 点击 "+String.fromCharCode(0x2039)+", "+String.fromCharCode(0x203a)+" 按钮选择月份\n"+"- 长按以上按钮可从菜单中快速选择年份或月份";Calendar._TT["ABOUT_TIME"]="\n\n"+"选择时间:\n"+"- 点击小时或分钟可使改数值加一\n"+"- 按住Shift键点击小时或分钟可使改数值减一\n"+"- 点击拖动鼠标可进行快速选择";Calendar._TT["PREV_YEAR"]="上一年 (按住出菜单)";Calendar._TT["PREV_MONTH"]="上一月 (按住出菜单)";Calendar._TT["GO_TODAY"]="转到今日";Calendar._TT["NEXT_MONTH"]="下一月 (按住出菜单)";Calendar._TT["NEXT_YEAR"]="下一年 (按住出菜单)";Calendar._TT["SEL_DATE"]="选择日期";Calendar._TT["DRAG_TO_MOVE"]="拖动";Calendar._TT["PART_TODAY"]=" (今日)";Calendar._TT["DAY_FIRST"]="最左边显示%s";Calendar._TT["WEEKEND"]="0,6";Calendar._TT["CLOSE"]="关闭";Calendar._TT["TODAY"]="今日";Calendar._TT["TIME_PART"]="(Shift-)点击鼠标或拖动改变值";Calendar._TT["DEF_DATE_FORMAT"]="%Y-%m-%d";Calendar._TT["TT_DATE_FORMAT"]="%A, %b %e日";Calendar._TT["WK"]="周";Calendar._TT["TIME"]="时间:";Calendar.setup=function(params){function param_default(pname,def){if(typeof params[pname]=="undefined"){params[pname]=def;}};param_default("formName",null);param_default("inputFieldYear",null);param_default("inputFieldMonth",null);param_default("inputFieldDay",null);param_default("inputFieldHour",null);param_default("inputFieldMinute",null);param_default("inputField",null);param_default("displayArea",null);param_default("button",null);param_default("help",null);param_default("eventName","click");param_default("ifFormat","%Y/%m/%d");param_default("daFormat","%Y/%m/%d");param_default("singleClick",true);param_default("disableFunc",null);param_default("dateStatusFunc",params["disableFunc"]);param_default("dateText",null);param_default("firstDay",null);param_default("align","Br");param_default("range",[1900,2999]);param_default("weekNumbers",true);param_default("flat",null);param_default("flatCallback",null);param_default("onSelect",null);param_default("onClose",null);param_default("onUpdate",null);param_default("date",null);param_default("showsTime",false);param_default("timeFormat","24");param_default("electric",true);param_default("step",2);param_default("position",null);param_default("cache",false);param_default("showOthers",false);param_default("multiple",null);var tmp=["inputField","displayArea","button","help","inputFieldDay","inputFieldMonth","inputFieldYear","inputFieldHour","inputFieldMinute"];for(var i in tmp){if(typeof params[tmp[i]]=="string"){if(params['formName'])
params[tmp[i]]=document.forms[params['formName']][params[tmp[i]]];else
params[tmp[i]]=document.getElementById(params[tmp[i]]);}}
if(!(params.flat||params.multiple||params.inputField||params.inputFieldDay||params.inputFieldMonth||params.inputFieldYear||params.inputFieldHour||params.inputFieldMinute||params.displayArea||params.button)){alert("Calendar.setup:\n  Nothing to setup (no fields found).  Please check your code");return false;}
function onSelect(cal){var p=cal.params;var update=(cal.dateClicked||p.electric);if(update&&p.inputField){p.inputField.value=cal.date.print(p.ifFormat);if(typeof p.inputField.onchange=="function")
p.inputField.onchange();}
if(update&&p.inputFieldHour){p.inputFieldHour.value=cal.date.getHours();if(typeof p.inputFieldHour.onchange=="function")
p.inputFieldHour.onchange();}
if(update&&p.inputFieldMinute){p.inputFieldMinute.value=cal.date.getMinutes();if(typeof p.inputFieldMinute.onchange=="function")
p.inputFieldMinute.onchange();}
if(update&&p.inputFieldDay){p.inputFieldDay.value=cal.date.getDate();if(typeof p.inputFieldDay.onchange=="function")
p.inputFieldDay.onchange();}
if(update&&p.inputFieldMonth){p.inputFieldMonth.value=cal.date.getMonth()+1;if(typeof p.inputFieldMonth.onchange=="function")
p.inputFieldMonth.onchange();}
if(update&&p.inputFieldYear){p.inputFieldYear.value=cal.date.getFullYear();if(typeof p.inputFieldYear.onchange=="function")
p.inputFieldYear.onchange();}
if(update&&p.displayArea)
p.displayArea.innerHTML=cal.date.print(p.daFormat);if(update&&typeof p.onUpdate=="function")
p.onUpdate(cal);if(update&&p.flat){if(typeof p.flatCallback=="function")
p.flatCallback(cal);}
if(update&&p.singleClick&&cal.dateClicked)
cal.callCloseHandler();};if(params.flat!=null){if(typeof params.flat=="string")
params.flat=document.getElementById(params.flat);if(!params.flat){alert("Calendar.setup:\n  Flat specified but can't find parent.");return false;}
var cal=new Calendar(params.firstDay,params.date,params.onSelect||onSelect);cal.showsOtherMonths=params.showOthers;cal.showsTime=params.showsTime;cal.time24=(params.timeFormat=="24");cal.params=params;cal.weekNumbers=params.weekNumbers;cal.setRange(params.range[0],params.range[1]);cal.setDateStatusHandler(params.dateStatusFunc);cal.getDateText=params.dateText;if(params.ifFormat){cal.setDateFormat(params.ifFormat);}
if(params.inputField&&typeof params.inputField.value=="string"){cal.parseDate(params.inputField.value);}
cal.create(params.flat);cal.show();return false;}
var triggerEl=params.button||params.displayArea||params.inputField;triggerEl["on"+params.eventName]=function(){var dateEl=params.inputField||params.displayArea;var dateFmt=params.inputField?params.ifFormat:params.daFormat;var mustCreate=false;var cal=window.calendar;if(dateEl)
params.date=Date.parseDate(dateEl.value||dateEl.innerHTML,dateFmt);if(!(cal&&params.cache)){window.calendar=cal=new Calendar(params.firstDay,params.date,params.onSelect||onSelect,params.onClose||function(cal){cal.hide();});cal.showsTime=params.showsTime;cal.time24=(params.timeFormat=="24");cal.weekNumbers=params.weekNumbers;mustCreate=true;}else{if(params.date)
cal.setDate(params.date);cal.hide();}
if(params.multiple){cal.multiple={};for(var i=params.multiple.length;--i>=0;){var d=params.multiple[i];var ds=d.print("%Y%m%d");cal.multiple[ds]=d;}}
cal.showsOtherMonths=params.showOthers;cal.yearStep=params.step;cal.setRange(params.range[0],params.range[1]);cal.params=params;cal.setDateStatusHandler(params.dateStatusFunc);cal.getDateText=params.dateText;cal.setDateFormat(dateFmt);if(mustCreate)
cal.create();cal.refresh();if(!params.position){cal.showAtElement(params.button||params.displayArea||params.inputField,params.align);}else{cal.showAt(params.position[0],params.position[1]);}
return false;};return cal;};function Add_Event(obj_,event_,func_,mode_){if(obj_.addEventListener)
obj_.addEventListener(event_,func_,mode_?mode_:false);else
obj_.attachEvent('on'+event_,func_);}
function GetScrollPage(){var Left;var Top;var DocRef;if(window.innerWidth){with(window){Left=pageXOffset;Top=pageYOffset;}}
else{if(document.documentElement&&document.documentElement.clientWidth)
DocRef=document.documentElement;else
DocRef=document.body;with(DocRef){Left=scrollLeft;Top=scrollTop;}}
return({top:Top,left:Left});}
function ObjGetPosition(obj_){var PosX=0;var PosY=0;if(typeof(obj_)=='object')
var Obj=obj_;else
var Obj=document.getElementById(obj_);if(Obj){PosX=Obj.offsetLeft;PosY=Obj.offsetTop;}
return({left:PosX,top:PosY});}
var IdTimer_1;var IdTimer_2;var WindowHeight;var WindowWidth;var O_DivScroll;var Rapport=1.0/20.0;var Mini=2*Rapport;var Objheader;var WindowWidthInit;function InitWindowWidthInit(){if(document.body){WindowWidthInit=document.body.clientWidth;}
else
{WindowWidthInit=window.innerWidth;}}
function DIV_Scroll(id_){var Obj=document.getElementById(id_);this.Obj=Obj;if(Obj){Obj.style.position="absolute";var Pos=ObjGetPosition(id_);if(Objheader)
this.PosX=WindowWidthInit-Obj.clientWidth;else
this.PosX=Pos.left;this.PosY=Pos.top;this.DebX=this.PosX;this.DebY=this.PosY;this.NewX=0;this.NewY=0;this.Move=DIV_Deplace;this.Move(this.PosX,this.PosY);}}
function DIV_Deplace(x_,y_){if(arguments[0]!=null){this.PosX=x_;this.Obj.style.left=parseInt(x_)+"px";}
if(arguments[1]!=null){this.PosY=y_;this.Obj.style.top=parseInt(y_)+"px";}}
function DIV_Replace(x_,y_){var Delta_X=(x_-O_DivScroll.PosX)*Rapport;var Delta_Y=(y_-O_DivScroll.PosY)*Rapport;if(((Delta_Y<Mini)&&(Delta_Y>-Mini))&&((Delta_X<Mini)&&(Delta_X>-Mini))){clearInterval(IdTimer_1);O_DivScroll.Move(x_,y_);}
else{O_DivScroll.Move(O_DivScroll.PosX+Delta_X,O_DivScroll.PosY+Delta_Y);}}
function DIV_CheckScroll(){if(Objheader){if(!window.innerWidth)
{if(document.body.clientWidth!=WindowWidthInit){O_DivScroll.Move(document.body.clientWidth-O_DivScroll.Obj.clientWidth,O_DivScroll.PosY);O_DivScroll.PosX=document.body.clientWidth-O_DivScroll.Obj.clientWidth;WindowWidthInit=document.body.clientWidth;O_DivScroll.DebX=O_DivScroll.PosX;first=0;}}
else
{if(window.innerWidth!=WindowWidthInit){O_DivScroll.Move(window.innerWidth-O_DivScroll.Obj.clientWidth,O_DivScroll.PosY);O_DivScroll.PosX=window.innerWidth-O_DivScroll.Obj.clientWidth;WindowWidthInit=window.innerWidth;O_DivScroll.DebX=O_DivScroll.PosX;first=0;}}}
var Scroll=GetScrollPage();O_DivScroll.NewX=O_DivScroll.DebX;O_DivScroll.NewY=Scroll.top+O_DivScroll.DebY;if((O_DivScroll.PosY!=O_DivScroll.NewY)||(O_DivScroll.PosX!=O_DivScroll.NewX)){clearInterval(IdTimer_1);IdTimer_1=setInterval("DIV_Replace("+O_DivScroll.NewX+","+O_DivScroll.NewY+")",10);}
return(true);}
function DIV_InitScroll(){InitWindowWidthInit();Objheader=document.getElementById("header_qianlong");if(!Objheader)
Objheader=document.getElementById("uheader");if(!Objheader)
Objheader=document.getElementById("header_xinhua");if(!Objheader)
Objheader=document.getElementById("header");O_DivScroll=new DIV_Scroll('rightbar');if(O_DivScroll.Obj)
IdTimer_2=setInterval('DIV_CheckScroll()',100);}
Add_Event(window,'load',DIV_InitScroll);