function expandLogo()
{
	
	var e = document.getElementById('wnsLogo');
	if(e.handle) {clearTimeout(e.handle); e.handle = null;}
	var width = parseInt(e.style.width);
	if(width >= 122) return;
	e.style.width = (width + 10) + "px";
	e.handle = setTimeout("expandLogo()", 30); 
}

function collapseLogo()
{
	var e = document.getElementById('wnsLogo');
	if(e.handle) {clearTimeout(e.handle); e.handle = null;}
	var width = parseInt(e.style.width);
	if(width <= 32){ e.style.width="32px"; return;}
	e.style.width = (width - 10) + "px";
	e.handle = setTimeout("collapseLogo()" , 30);
}

function init(color, lado)
{
	var pic = color=='light'? "assL.png" : "assD.png";
	pic = "http://www.webnetshow.com/assinatura/" + pic;
	lado = lado== 'right'? "float:right;" : "";
	if(navigator.userAgent.match(/IE [65]/))pic = pic.replace(/\.png/, ".gif");
	document.write("<div id='wnsLogo' onClick='window.open(\"http://www.webnetshow.com\", \"\", \"\" );' style='cursor:pointer;background:url(" + pic +") no-repeat; width:32px; height:28px;" +lado+ "' onmouseover=\"expandLogo()\"; onmouseout=\"collapseLogo()\"></div>");
}
