﻿var lgb={};
lgb.allowedLabels=["follow-me","follow-us","follow","my-twitter"];
lgb.defaultTop=78;
lgb.defaultColor="#35ccff";
lgb.isInArray=function(str,ar){if(ar.length<1)return;for(var i=0;
i<ar.length;i++){if(ar[i]==str){return true;break;}}
return false;}

lgb.showbadge=function(){if(!window.XMLHttpRequest){return;}

if(document.getElementById('FeedbackBadge')){document.body.removeChild(document.getElementById('FeedbackBadge'));}
if(lgb.top<0||lgb.top>1000||isNaN(lgb.top)){lgb.top=lgb.defaultTop;}
if(!lgb.isInArray(lgb.label,lgb.allowedLabels)){lgb.label=lgb.allowedLabels[0];}

var validColorPattern=/^#([a-f]|[A-F]|[0-9]){3}(([a-f]|[A-F]|[0-9]){3})?$/;

if(!validColorPattern.test(lgb.color)||(lgb.color.length!=4&&lgb.color.length!=7)){lgb.color=lgb.defaultColor;};

if(lgb.side!='l'){lgb.side='r';}

lgb.tabStyleCode='position:fixed;'+'top:'+lgb.top+'px;'+'width:30px;'+
'height:119px;'+'z-index:8765;'+'cursor:pointer;'+'background:'+lgb.color+
' url(http://www.alchemex.com/bicommunity/follow-us.png);'+
'background-repeat:no-repeat;';

lgb.aboutStyleCode='position:absolute;'+'top:'+
(parseInt(lgb.top)+107)+'px;'+'width:10px;'+'height:11px;'+'z-index:9876;'+
'cursor:pointer;'+'background:url();'+
'background-repeat:no-repeat;';

if(lgb.side=='l'){lgb.tabStyleCode+='left:0; background-position:right top;';lgb.aboutStyleCode+='left:0;';}
else{lgb.tabStyleCode+='right:0; background-position:left top;';lgb.aboutStyleCode+='right:0;';}

lgbMainDiv=document.createElement('div');lgbMainDiv.setAttribute('id','FeedbackBadge');
document.body.appendChild(lgbMainDiv);
lgbMainDiv.innerHTML='<div id="lgbTab" style="'+
lgb.tabStyleCode+'"></div><div id="lgbAbout" style="'+lgb.aboutStyleCode+
'"></div>'+'<style>#lgbAbout{visibility:hidden;} #FeedbackBadge:hover #lgbAbout{visibility:visible;}</style>';
document.getElementById('lgbTab').onclick=function(){window.open("http://www.alchemex.com/contact/ContactForm.aspx","_blank","location=no,resizable=no,status=1,scrollbars=0,width=680,height=470");}
document.getElementById('lgbAbout').onclick=function(){window.open('http://www.alchemex.com/AboutUs.aspx');}}