function vote_do( vl, classid )
{
   if ( sess )
   {
      // Get form values
      url = '?vl='+vl+'&ClassID='+classid+'gocom=referer&cm=vote&'+sess;
      id_do ( url );
   }
   else
   {
      please_signin( vl );
   }
   return(false);
}

// return
function current_vote( id, total )
{
   var div_total, div_go_click;
   div_total = document.getElementById( 'vote_total'+id );
   div_go_click = document.getElementById( 'vote_go_click'+id );

   if ( div_total )
   {
      div_total.innerHTML = total;
      div_go_click.innerHTML = "<strong>voted!</strong>";
   }
}

function please_signin( vl )
{
   var div;
   div = document.getElementById( 'vote_please'+vl );

   if ( div )
   {
      div.className = "vote_please";
      div.innerHTML = "Please <a href=\"http://www.amazingembroiderydesigns.com/?com=signin\">log in</a>.<BR> Are you new to the amazingembroiderydesigns.com ? Click <A href=\"http://www.amazingembroiderydesigns.com/?com=joinnow\">here</a> to register!&nbsp;&nbsp;&nbsp;<a href=\"#\" onClick=\"return(please_close("+vl+"))\"><font size=2 color=red><b>X</b></a>";
   }
}
function please_close( vl )
{
   var div;
   div = document.getElementById( 'vote_please'+vl );

   if ( div )
   {
      div.className = "vote_close";
      div.innerHTML = "";
   }
   return(false);
}