var serverName       = 'http://e-malt.com/';
var window_says      = 'Send Your opinion about this page!';
var status_says      = 'E-Malt. Welcome to the on line world of malt!!'

var rankingURL       = serverName + 'activity/ranking.asp?Action=GetVoteForm&';
var imageVoteOn      = serverName + 'images/vote_system_on.gif';
var imageVoteOff     = serverName + 'images/vote_system_off.gif';

// Opinion, ranking system starting here!



self.document.write("<div align='right'>");
self.document.write("<a HREF='javascript:Open_Opinion_Window();' onmouseover='window.status = window_says;  document.images[\"vote\"].src=imageVoteOn; return true;' onmouseout='window.status = status_says;  return true;'>");
self.document.write("<img SRC='"+imageVoteOn+"' ALT='" + window_says + "' BORDER='0' width='120' height='20' name='vote'></a>");
self.document.write("</div>");


function Open_Opinion_Window()
{
var loc=rankingURL +'PageTitle=' + escape(self.document.title)+'&PageURL=' + escape(self.document.location);

Win=window.open(loc,"Opinion","height=300,innerHeight=300,width=450,innerWidth=450,status=no,toolbar=no,menubar=no,scrollbars=no,resizable=yes");

document.images["vote"].src=imageVoteOff;
};

