/*
 * Ping Toolbar - Developed by Nenko Ivanov
 *
 * Copyright (c) 2008 (Ping.bg)
 *
 * $Date: 2008-03-26 17:03:06
 * 
 */

function Toolbar(){}Toolbar.prototype.create=function(url){var IE=!!(window.attachEvent&&!window.opera);var height=(IE)?'53':'50';var cssStr='#ping_toolbar {height: '+height+'px;width: 100%;position: absolute;top: 0px;margin-top: 0px;left: 0px;margin-left: 0px;display:block;border:0px; z-index:10000;}';var style=document.createElement("style");style.setAttribute("type","text/css");if(style.styleSheet){style.styleSheet.cssText=cssStr}else{var cssText=document.createTextNode(cssStr);style.appendChild(cssText)}var headRef=document.getElementsByTagName('head')[0];headRef.appendChild(style);var iframe=document.createElement('iframe');iframe.src='http://www.ping.bg/buzz/toolbar_gadjet/?url='+url;iframe.width='100%';iframe.height=height;iframe.scrolling='no';iframe.border='0';iframe.id='ping_toolbar';document.body.appendChild(iframe);document.body.style.paddingTop=height+'px';scroll(0,0);return iframe}
