/*java-idea*/function CheckAll(b,a){if(document.getElementById){thisCheckBoxes=b.parentNode.parentNode.parentNode.getElementsByTagName("input");for(i=1;i<thisCheckBoxes.length;i++){if(thisCheckBoxes[i].name==a){thisCheckBoxes[i].checked=b.checked;Colorize(document.getElementById(thisCheckBoxes[i].id.replace("cb","tr")),thisCheckBoxes[i])}}}}function Colorize(a,b){if(document.getElementById){if(a&&b){a.className=(b.checked?"selected":"default")}}}function CheckCB(a){if(document.getElementById){if(document.getElementById(a.id.replace("cb","tr"))){a.checked=!a.checked}}}function _v(a){return document.getElementById(a)}var LiveValidation=function(b,a){this.initialize(b,a)};LiveValidation.VERSION="1.3 standalone";LiveValidation.TEXTAREA=1;LiveValidation.TEXT=2;LiveValidation.PASSWORD=3;LiveValidation.CHECKBOX=4;LiveValidation.SELECT=5;LiveValidation.FILE=6;LiveValidation.massValidate=function(d){var c=true;for(var e=0,a=d.length;e<a;++e){var b=d[e].validate();if(c){c=b}}return c};LiveValidation.prototype={validClass:"LV_valid",invalidClass:"LV_invalid",messageClass:"LV_validation_message",validFieldClass:"LV_valid_field",invalidFieldClass:"LV_invalid_field",initialize:function(c,d){var a=this;if(!c){throw new Error("LiveValidation::initialize - No element reference or element id has been provided!")}this.element=c.nodeName?c:document.getElementById(c);if(!this.element){throw new Error("LiveValidation::initialize - No element with reference or id of '"+c+"' exists!")}this.validations=[];this.elementType=this.getElementType();this.form=this.element.form;var e=d||{};this.validMessage=e.validMessage||"Thankyou!";var b=e.insertAfterWhatNode||this.element;this.insertAfterWhatNode=b.nodeType?b:document.getElementById(b);this.onValid=e.onValid||function(){this.insertMessage(this.createMessageSpan());this.addFieldClass()};this.onInvalid=e.onInvalid||function(){this.insertMessage(this.createMessageSpan());this.addFieldClass()};this.onlyOnBlur=e.onlyOnBlur||false;this.wait=e.wait||0;this.onlyOnSubmit=e.onlyOnSubmit||false;if(this.form){this.formObj=LiveValidationForm.getInstance(this.form);this.formObj.addField(this)}this.oldOnFocus=this.element.onfocus||function(){};this.oldOnBlur=this.element.onblur||function(){};this.oldOnClick=this.element.onclick||function(){};this.oldOnChange=this.element.onchange||function(){};this.oldOnKeyup=this.element.onkeyup||function(){};this.element.onfocus=function(f){a.doOnFocus(f);return a.oldOnFocus.call(this,f)};if(!this.onlyOnSubmit){switch(this.elementType){case LiveValidation.CHECKBOX:this.element.onclick=function(f){a.validate();return a.oldOnClick.call(this,f)};case LiveValidation.SELECT:case LiveValidation.FILE:this.element.onchange=function(f){a.validate();return a.oldOnChange.call(this,f)};break;default:if(!this.onlyOnBlur){this.element.onkeyup=function(f){a.deferValidation();return a.oldOnKeyup.call(this,f)}}this.element.onblur=function(f){a.doOnBlur(f);return a.oldOnBlur.call(this,f)}}}},destroy:function(){if(this.formObj){this.formObj.removeField(this);this.formObj.destroy()}this.element.onfocus=this.oldOnFocus;if(!this.onlyOnSubmit){switch(this.elementType){case LiveValidation.CHECKBOX:this.element.onclick=this.oldOnClick;case LiveValidation.SELECT:case LiveValidation.FILE:this.element.onchange=this.oldOnChange;break;default:if(!this.onlyOnBlur){this.element.onkeyup=this.oldOnKeyup}this.element.onblur=this.oldOnBlur}}this.validations=[];this.removeMessageAndFieldClass()},add:function(a,b){this.validations.push({type:a,params:b||{}});return this},remove:function(e,c){var b=false;for(var d=0,a=this.validations.length;d<a;d++){if(this.validations[d].type==e){if(this.validations[d].params==c){b=true;break}}}if(b){this.validations.splice(d,1)}return this},deferValidation:function(b){if(this.wait>=300){this.removeMessageAndFieldClass()}var a=this;if(this.timeout){clearTimeout(a.timeout)}this.timeout=setTimeout(function(){a.validate()},a.wait)},doOnBlur:function(a){this.focused=false;this.validate(a)},doOnFocus:function(a){this.focused=true;this.removeMessageAndFieldClass()},getElementType:function(){switch(true){case (this.element.nodeName.toUpperCase()=="TEXTAREA"):return LiveValidation.TEXTAREA;case (this.element.nodeName.toUpperCase()=="INPUT"&&this.element.type.toUpperCase()=="TEXT"):return LiveValidation.TEXT;case (this.element.nodeName.toUpperCase()=="INPUT"&&this.element.type.toUpperCase()=="PASSWORD"):return LiveValidation.PASSWORD;case (this.element.nodeName.toUpperCase()=="INPUT"&&this.element.type.toUpperCase()=="CHECKBOX"):return LiveValidation.CHECKBOX;case (this.element.nodeName.toUpperCase()=="INPUT"&&this.element.type.toUpperCase()=="FILE"):return LiveValidation.FILE;case (this.element.nodeName.toUpperCase()=="SELECT"):return LiveValidation.SELECT;case (this.element.nodeName.toUpperCase()=="INPUT"):throw new Error("LiveValidation::getElementType - Cannot use LiveValidation on an "+this.element.type+" input!");default:throw new Error("LiveValidation::getElementType - Element must be an input, select, or textarea!")}},doValidations:function(){this.validationFailed=false;for(var b=0,a=this.validations.length;b<a;++b){var c=this.validations[b];switch(c.type){case Validate.Presence:case Validate.Confirmation:case Validate.Acceptance:this.displayMessageWhenEmpty=true;this.validationFailed=!this.validateElement(c.type,c.params);break;default:this.validationFailed=!this.validateElement(c.type,c.params);break}if(this.validationFailed){return false}}this.message=this.validMessage;return true},validateElement:function(a,d){var c=(this.elementType==LiveValidation.SELECT)?this.element.options[this.element.selectedIndex].value:this.element.value;if(a==Validate.Acceptance){if(this.elementType!=LiveValidation.CHECKBOX){throw new Error("LiveValidation::validateElement - Element to validate acceptance must be a checkbox!")}c=this.element.checked}var b=true;try{a(c,d)}catch(e){if(e instanceof Validate.Error){if(c!==""||(c===""&&this.displayMessageWhenEmpty)){this.validationFailed=true;this.message=e.message;b=false}}else{throw e}}finally{return b}},validate:function(){if(!this.element.disabled){var a=this.doValidations();if(a){this.onValid();return true}else{this.onInvalid();return false}}else{return true}},enable:function(){this.element.disabled=false;return this},disable:function(){this.element.disabled=true;this.removeMessageAndFieldClass();return this},createMessageSpan:function(){var a=document.createElement("span");var b=document.createTextNode(this.message);a.appendChild(b);return a},createMessageDiv:function(){var a=document.createElement("div");var b=document.createTextNode(this.message);a.appendChild(b);return a},insertMessage:function(b){this.removeMessage();if((this.displayMessageWhenEmpty&&(this.elementType==LiveValidation.CHECKBOX||this.element.value==""))||this.element.value!=""){var a=this.validationFailed?this.invalidClass:this.validClass;b.className+=" "+this.messageClass+" "+a;if(this.insertAfterWhatNode.nextSibling){this.insertAfterWhatNode.parentNode.insertBefore(b,this.insertAfterWhatNode.nextSibling)}else{this.insertAfterWhatNode.parentNode.appendChild(b)}}},addFieldClass:function(){this.removeFieldClass();if(!this.validationFailed){if(this.displayMessageWhenEmpty||this.element.value!=""){if(this.element.className.indexOf(this.validFieldClass)==-1){this.element.className+=" "+this.validFieldClass}}}else{if(this.element.className.indexOf(this.invalidFieldClass)==-1){this.element.className+=" "+this.invalidFieldClass}}},removeMessage:function(){var a;var b=this.insertAfterWhatNode;while(b.nextSibling){if(b.nextSibling.nodeType===1){a=b.nextSibling;break}b=b.nextSibling}if(a&&a.className.indexOf(this.messageClass)!=-1){this.insertAfterWhatNode.parentNode.removeChild(a)}},removeFieldClass:function(){if(this.element.className.indexOf(this.invalidFieldClass)!=-1){this.element.className=this.element.className.split(this.invalidFieldClass).join("")}if(this.element.className.indexOf(this.validFieldClass)!=-1){this.element.className=this.element.className.split(this.validFieldClass).join(" ")}},removeMessageAndFieldClass:function(){this.removeMessage();this.removeFieldClass()}};var LiveValidationForm=function(a){this.initialize(a)};LiveValidationForm.instances={};LiveValidationForm.getInstance=function(a){var b=Math.random()*Math.random();if(!a.id){a.id="formId_"+b.toString().replace(/\./,"")+new Date().valueOf()}if(!LiveValidationForm.instances[a.id]){LiveValidationForm.instances[a.id]=new LiveValidationForm(a)}return LiveValidationForm.instances[a.id]};LiveValidationForm.prototype={initialize:function(b){this.name=b.id;this.element=b;this.fields=[];this.oldOnSubmit=this.element.onsubmit||function(){};var a=this;this.element.onsubmit=function(c){return(LiveValidation.massValidate(a.fields))?a.oldOnSubmit.call(this,c||window.event)!==false:false}},addField:function(a){this.fields.push(a)},removeField:function(c){var b=[];for(var d=0,a=this.fields.length;d<a;d++){if(this.fields[d]!==c){b.push(this.fields[d])}}this.fields=b},destroy:function(a){if(this.fields.length!=0&&!a){return false}this.element.onsubmit=this.oldOnSubmit;LiveValidationForm.instances[this.name]=null;return true}};var Validate={Presence:function(c,b){var b=b||{};var a=b.failureMessage||"Can't be empty!";if(c===""||c===null||c===undefined){Validate.fail(a)}return true},Numericality:function(f,l){var d=f;var f=Number(f);var l=l||{};var k=((l.minimum)||(l.minimum==0))?l.minimum:null;var b=((l.maximum)||(l.maximum==0))?l.maximum:null;var a=((l.is)||(l.is==0))?l.is:null;var j=l.notANumberMessage||"Must be a number!";var h=l.notAnIntegerMessage||"Must be an integer!";var g=l.wrongNumberMessage||"Must be "+a+"!";var c=l.tooLowMessage||"Must not be less than "+k+"!";var e=l.tooHighMessage||"Must not be more than "+b+"!";if(!isFinite(f)){Validate.fail(j)}if(l.onlyInteger&&(/\.0+$|\.$/.test(String(d))||f!=parseInt(f))){Validate.fail(h)}switch(true){case (a!==null):if(f!=Number(a)){Validate.fail(g)}break;case (k!==null&&b!==null):Validate.Numericality(f,{tooLowMessage:c,minimum:k});Validate.Numericality(f,{tooHighMessage:e,maximum:b});break;case (k!==null):if(f<Number(k)){Validate.fail(c)}break;case (b!==null):if(f>Number(b)){Validate.fail(e)}break}return true},Format:function(d,b){var d=String(d);var b=b||{};var a=b.failureMessage||"Not valid!";var e=b.pattern||/./;var c=b.negate||false;if(!c&&!e.test(d)){Validate.fail(a)}if(c&&e.test(d)){Validate.fail(a)}return true},Email:function(c,b){var b=b||{};var a=b.failureMessage||"Must be a valid email address!";Validate.Format(c,{failureMessage:a,pattern:/^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i});return true},Length:function(d,c){var d=String(d);var c=c||{};var e=((c.minimum)||(c.minimum==0))?c.minimum:null;var b=((c.maximum)||(c.maximum==0))?c.maximum:null;var g=((c.is)||(c.is==0))?c.is:null;var a=c.wrongLengthMessage||"Must be "+g+" characters long!";var h=c.tooShortMessage||"Must not be less than "+e+" characters long!";var f=c.tooLongMessage||"Must not be more than "+b+" characters long!";switch(true){case (g!==null):if(d.length!=Number(g)){Validate.fail(a)}break;case (e!==null&&b!==null):Validate.Length(d,{tooShortMessage:h,minimum:e});Validate.Length(d,{tooLongMessage:f,maximum:b});break;case (e!==null):if(d.length<Number(e)){Validate.fail(h)}break;case (b!==null):if(d.length>Number(b)){Validate.fail(f)}break;default:throw new Error("Validate::Length - Length(s) to validate against must be provided!")}return true},Inclusion:function(h,k){var k=k||{};var e=k.failureMessage||"Must be included in the list!";var j=(k.caseSensitive===false)?false:true;if(k.allowNull&&h==null){return true}if(!k.allowNull&&h==null){Validate.fail(e)}var a=k.within||[];if(!j){var d=[];for(var b=0,c=a.length;b<c;++b){var g=a[b];if(typeof g=="string"){g=g.toLowerCase()}d.push(g)}a=d;if(typeof h=="string"){h=h.toLowerCase()}}var f=false;for(var l=0,c=a.length;l<c;++l){if(a[l]==h){f=true}if(k.partialMatch){if(h.indexOf(a[l])!=-1){f=true}}}if((!k.negate&&!f)||(k.negate&&f)){Validate.fail(e)}return true},Exclusion:function(a,b){var b=b||{};b.failureMessage=b.failureMessage||"Must not be included in the list!";b.negate=true;Validate.Inclusion(a,b);return true},Confirmation:function(c,b){if(!b.match){throw new Error("Validate::Confirmation - Error validating confirmation: Id of element to match must be provided!")}var b=b||{};var d=b.failureMessage||"Does not match!";var a=b.match.nodeName?b.match:document.getElementById(b.match);if(!a){throw new Error("Validate::Confirmation - There is no reference with name of, or element with id of '"+b.match+"'!")}if(c!=a.value){Validate.fail(d)}return true},Acceptance:function(c,b){var b=b||{};var a=b.failureMessage||"Must be accepted!";if(!c){Validate.fail(a)}return true},Custom:function(c,b){var b=b||{};var e=b.against||function(){return true};var a=b.args||{};var d=b.failureMessage||"Not valid!";if(!e(c,a)){Validate.fail(d)}return true},now:function(a,c,d){if(!a){throw new Error("Validate::now - Validation function must be provided!")}var b=true;try{a(c,d||{})}catch(e){if(e instanceof Validate.Error){b=false}else{throw e}}finally{return b}},fail:function(a){throw new Validate.Error(a)},Error:function(a){this.message=a;this.name="ValidationError"}};function ajax(a,d){var b=false;try{b=new XMLHttpRequest()}catch(c){try{b=new ActiveXObject("Msxml2.XMLHTTP")}catch(c){try{b=new ActiveXObject("Microsoft.XMLHTTP")}catch(c){b=false}}}if(b){b.onreadystatechange=function(){if(b.readyState==4){if(b.status==200){document.getElementById(d).innerHTML=b.responseText}else{alert("Error in AJAX!")}}};b.open("GET",a,true);b.send(null)}return false};
/*calendar*/var req;function navigate(d,c,b){curtainClose();var a="calendar.php?cajax="+b+"&cal_date="+c+"-"+d;if(window.XMLHttpRequest){req=new XMLHttpRequest()}else{if(window.ActiveXObject){req=new ActiveXObject("Microsoft.XMLHTTP")}}req.open("GET",a,true);req.onreadystatechange=callback;req.send(null);document.getElementById("calendar-loading").style.visibility="visible"}function callback(){obj=document.getElementById("calendar");if(req.readyState==4){document.getElementById("calendar-loading").style.visibility="hidden";if(req.status==200){response=req.responseText;obj.innerHTML=response}else{alert("There was a problem retrieving the data:\n"+req.statusText)}}}function curtainClose(){if(curtainLeft<curtainRight){curtainRight-=curtainStep;curtainLeft+=curtainStep;var a="rect(auto, "+curtainRight+"px, auto, "+curtainLeft+"px)";document.getElementById("cliplayer").style.clip=a;setTimeout(curtainClose,curtainTimeout)}if(curtainLeft>=curtainRight){document.getElementById("cliplayer").style.zIndex="-1"}}var curtainStep=3;var curtainTimeout=15;var curtainLeft=75;var curtainRight=75;function curtainOpen(){document.getElementById("cliplayer").style.zIndex="0";if(curtainLeft>0){curtainRight+=curtainStep;curtainLeft-=curtainStep;var a="rect(auto, "+curtainRight+"px, auto, "+curtainLeft+"px)";document.getElementById("cliplayer").style.clip=a;setTimeout(curtainOpen,curtainTimeout)}};
/*live*****/var liveinet = "<a href='/go.php?go=http://www.liveinternet.ru/click' target=_blank><img src='http://counter.yadro.ru/hit?t14.6;r"+escape(document.referrer)+((typeof(screen)=="undefined")?"":";s"+screen.width+"*"+screen.height+"*"+(screen.colorDepth?screen.colorDepth:screen.pixelDepth))+";u"+escape(document.URL)+";"+Math.random()+"' border='0' width='88' height='31'  alt='' title='LiveInternet: показано число просмотров за 24 часа, посетителей за 24 часа и за сегодня' hspace=5 vspace=5></a>";
/*live****/function liveinternet(){document.write(liveinet);}
/*tab****/MyOtzivCl=function(){var b='http://'+location.host+'/';var a='"<i>Можно сломать шпагу, нельзя истребить идею...</i>" &copy; Виктор Мари Гюго';this.mo_get_win_width=function(){var c=0;if(typeof(window.innerWidth)=="number"){c=window.innerWidth}else{if(document.documentElement&&document.documentElement.clientWidth){c=document.documentElement.clientWidth}else{if(document.body&&document.body.clientWidth){c=document.body.clientWidth}}}return c};this.mo_get_win_height=function(){var c=0;if(typeof(window.innerHeight)=="number"){c=window.innerHeight}else{if(document.documentElement&&document.documentElement.clientHeight){c=document.documentElement.clientHeight}else{if(document.body&&document.body.clientHeight){c=document.body.clientHeight}}}return c};this.mo_get_scrol=function(){var c=0;if(self.pageYOffset){c=self.pageYOffset}else{if(document.documentElement&&document.documentElement.scrollTop){c=document.documentElement.scrollTop}else{if(document.body){c=document.body.scrollTop}}}return c};this.mo_show_box=function(){if(document.getElementById("fthere").innerHTML==""){document.getElementById("fthere").innerHTML='<iframe src="'+b+'index.php?name=Ideas&op=popup_idea" width="627" height="250" align="left" style="border: 0; position:relative;" frameborder="0" scrolling="no">Frame error</iframe>'}var c=this.mo_get_win_width()/2-350;var d=this.mo_get_win_height()/2-200+this.mo_get_scrol();document.getElementById("myotziv_box").style.top=d+"px";document.getElementById("myotziv_box").style.left=c+"px";document.getElementById("myotziv_box").style.display="block"};this.mo_hide_box=function(){document.getElementById("myotziv_box").style.display="none"};this.mo_showcss=function(){document.write('<style type="text/css">');document.write(".tdsfh{background: url('"+b+"ideas/images/orange-tmpl/feedback_tab.gif');}");document.write(".widsnjx {margin:0 auto; position:relative;}");document.write(".widsnjx fieldset {padding:0; border:none; border:0px solid #000; margin:0; width: 600px; }");document.write(".furjbqy {position:fixed; left:0; top:263px; z-index:5; width:22px; height:151px;}* html .furjbqy {position:absolute;top: expression((76 + (ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop)) + 'px');}.furjbqy a {display:block; width:22px; height:151px;}.furjbqy img {border:0;}");document.write(".furrghtd {position:fixed; right:1px; top:263px; z-index:5; width:22px; height:151px;}* html .furrghtd {position:absolute;}.furrghtd a {display:block; width:22px; height:151px; background:#FFA000;}.furrghtd a:hover {background:#FFA000;}.furrghtd img {border:0;}");document.write('#poxupih {position:absolute; z-index:1001; width:689px;  top:0px; left:0px; font-size:11px; color:#3F4543; font-family: "Segoe UI", Arial, Tahoma, sans-serif;}.poxupih_top {width:689px; height:28px; background:transparent url('+b+"ideas/images/orange-tmpl/popup_idea_top.png) 0 0 no-repeat;}.poxupih_bt {width:689px; height:28px; background:transparent url("+b+"ideas/images/orange-tmpl/popup_idea_bt.png) 0 0 no-repeat;}");document.write(".poxupih_center {width:689px; background:transparent url("+b+'ideas/images/orange-tmpl/popup_idea_bg.png) 0 0 repeat-y;}.poxupih1 {margin: 0 20px; overflow:hidden; background:#efefef; padding:0px;}.fdsrrel {float:right; margin:-2px 5px 0 0;}.bvnmrte {padding: 15px 20px 20px 12px; _padding-left:1px; font-family: "Segoe UI", Arial, Tahoma, sans-serif; font-size:11px; color:#3F4543; }.poxupih1 .bvnmrte {padding-bottom:10px; padding-top:0px; background:none;}.gertuik {padding:0 8px 0 20px;}');document.write("#poxupih #hretge {margin:8px 0px; height:96px; background: #fba11f url("+b+"ideas/images/orange-tmpl/search_bg.gif) 0 0px no-repeat; position:relative;}#hretge form {padding: 10px 19px 0 18px;}#poxupih #bulbulh {width:455px; float:left;}#adihet {float:right;background: transparent url("+b+"ideas/images/orange-tmpl/add_idea_go.gif) 0 0px no-repeat; border:none medium; width:132px; height:27px; float:right; margin-right:-3px; cursor:pointer;}");document.write("#adihet:hover {background-position: 0 -27px;}.drop_right {background: transparent url("+b+"ideas/images/orange-tmpl/q_right1.gif) 0% 0px no-repeat; float:right; display:block; width:8px; height:11px; margin-top:1px; font-size:0;}.drop_left {background: transparent url("+b+"ideas/images/orange-tmpl/q_left1.gif) 0% 0px no-repeat; float:right; display:block; width:8px; height:11px; margin-top:1px;}.status_right {left:15px !important;  text-align:left; float:right; margin:0 -15px 0 0;}");document.write("#poxupih  a {position:relative; z-index:10;}#poxupih .idea_green_top {height:1%;}.poxupih_top {_background-image:none; _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+b+"ideas/images/orange-tmpl/popup_idea_top.png');}.poxupih_bt {_background-image:none; _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+b+"ideas/images/orange-tmpl/popup_idea_bt.png');}.poxupih_center {_background-image:none; _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+b+"ideas/images/orange-tmpl/popup_idea_bg.png',sizingmethod='scale');}");document.write("a.pokusijy {display:block; width:16px; height:16px; background: transparent url("+b+'ideas/images/orange-tmpl/cancel.gif) 100% 0px no-repeat; float:right; position:relative; z-index:101;}a.pokusijy:hover {background-position: 100% 100%; cursor:pointer;}.i_prop {font-size:18px; color:#fff; padding: 0 0 5px 0;}#bulbulh {width:600px; padding: 2px 4px; color:#3F4543; font-family: "Segoe UI", Arial; font-size:16px; margin-bottom:5px;}#hdsfjfsr {background: transparent url('+b+"ideas/images/orange-tmpl/search_go.gif) 0 0px no-repeat; border:none medium; width:97px; height:27px; float:right; margin-right:-3px; cursor:pointer;}#hdsfjfsr:hover {background-position: 0 -27px;}");document.write("</style>")};this.mo_showframe=function(){this.mo_showcss();document.write('<div class="furjbqy"><a href="javascript:MyOtziv.mo_show_box();"><img src="'+b+'ideas/images/orange-tmpl/transp.gif" width="22" height="151" alt="" style="border: 0;" class="tdsfh" /></a></div>');document.write('<div style="position:absolute; display: none; top: 0px; left: 0px;" id="myotziv_box">');document.write('<div class="widsnjx"><div id="poxupih"><div class="poxupih_top"></div><div class="poxupih_center"><div class="poxupih1">');document.write('<div class="gertuik"><a class="pokusijy" title="закрыть" onClick="MyOtziv.mo_hide_box();"></a>');document.write('<div class="fdsrrel"><a href="'+b+'" target="_blank"><img src="'+b+'ideas/images/orange-tmpl/widget_logo.gif" width="125" height="23" alt="" border="0" /></a></div>'+a+"</div>");document.write('<div id="hretge"><form action="index.php?name=Ideas&op=add_idea" method="post"><fieldset><div class="i_prop">Я предлагаю вам...</div><input id="bulbulh" name="title" type="text" /><input type="submit" value="" id="adihet" /></fieldset></form></div>');document.write('<div class="bvnmrte" style="height: 250px;" id="fthere">');document.write("</div>");document.write('</div></div><div class="poxupih_bt"></div></div></div>');document.write("</div>")}};