function drawCalculator()
{document.getElementById("for_preview").innerHTML='<div class="light">'+'<h3><em> Love Calculator</em> </h3>'+'<div id="item-code">'+'<font class="medium_text">Please enter the two names to be analyzed:</div>'+'<form name="loveform" style="color:#752B7D;font-weight:bold;font-size:14px;">'+'<input type="text" size="20" class="input" name="name1" value="'+UserName+'"/>'+'+'+'<input type="text" size="20"  class="input" name="name2" value=""/>'+'='+'???'+'<br/>'+'<br/>'+'<input type="image" src="http://fanofsoap.com/9ab402a4/public/love_calculator/images/calculate.png" class="butlarge" style="margin-left:70px;" onclick="calc();return false;" name="calculate" value="Calculate!" />'+'</form>'+'<div id="for_percent_div" align=center style="background-color:transparent;background-image:url(http://fanofsoap.com/9ab402a4/public/love_calculator/images/heart1.gif);background-repeat:no-repeat;height:85px;width:170px;margin-left:100px;">'+'<div style="font-weight: bold; padding-left: 23px; font-style: italic; font-size: 43px; color: rgb(156, 92, 163); padding-top: 15px;height:110px;" id="for_percent"></div>'+'</div></div>';
var ad2='<iframe width="300" scrolling="no" height="250" frameborder="0" style="border: 0px none ;" id="socialmedia_ad_vert" name="socialmedia_ad" src="http://ads.socialmedia.com/myspace/monetize.php?smms.js&pop=1&width=300&height=250&pubid=0763a67f4105dd80d0dd1ef4b96e51ef&bgcolor=ffffff&bordercolor=ffffff" border=none></iframe>';
document.getElementById("for_preview").innerHTML+=ad2+'<center><input type="image" style="" src="http://fanofsoap.com/9ab402a4/public/love_calculator/images/bulletin.png" onclick="sendBulletin();return false"/></center>';}
function calc(){first=document.loveform.name1.value.toUpperCase();firstlength=document.loveform.name1.value.length;second=document.loveform.name2.value.toUpperCase();secondlength=document.loveform.name2.value.length;var LoveCount=0;for(Count=0;Count<firstlength;Count++){letter1=first.substring(Count,Count+1);if(letter1=='L')LoveCount+=2;if(letter1=='O')LoveCount+=2;if(letter1=='V')LoveCount+=2;if(letter1=='E')LoveCount+=2;if(letter1=='Y')LoveCount+=3;if(letter1=='O')LoveCount+=1;if(letter1=='U')LoveCount+=3;}
for(Count=0;Count<secondlength;Count++){letter2=second.substring(Count,Count+1);if(letter2=='L')LoveCount+=2;if(letter2=='O')LoveCount+=2;if(letter2=='V')LoveCount+=2;if(letter2=='E')LoveCount+=2;if(letter2=='Y')LoveCount+=3;if(letter2=='O')LoveCount+=1;if(letter2=='U')LoveCount+=3;}
amount=0;if(LoveCount>0)amount=5-((firstlength+secondlength)/2)
if(LoveCount>2)amount=10-((firstlength+secondlength)/2)
if(LoveCount>4)amount=20-((firstlength+secondlength)/2)
if(LoveCount>6)amount=30-((firstlength+secondlength)/2)
if(LoveCount>8)amount=40-((firstlength+secondlength)/2)
if(LoveCount>10)amount=50-((firstlength+secondlength)/2)
if(LoveCount>12)amount=60-((firstlength+secondlength)/2)
if(LoveCount>14)amount=70-((firstlength+secondlength)/2)
if(LoveCount>16)amount=80-((firstlength+secondlength)/2)
if(LoveCount>18)amount=90-((firstlength+secondlength)/2)
if(LoveCount>20)amount=100-((firstlength+secondlength)/2)
if(LoveCount>22)amount=110-((firstlength+secondlength)/2)
if(firstlength==0||secondlength==0)amount="Err";if(amount<0)amount=0;if(amount>99)amount=99;document.getElementById("for_percent").innerHTML=amount+"%";return amount+"%";}