// JavaScript Document<!--
function checkPlugin(plgIn,autoGo) { 

  var ok=false; document.MM_returnValue = false;
  res ="y";
  with (navigator) if (appName.indexOf('Microsoft')==-1 || (plugins && plugins.length)) {
    ok=(plugins && plugins[plgIn]);
  } else if (appVersion.indexOf('3.1')==-1) { 
    if (plgIn.indexOf("Flash")!=-1 && window.MM_flash!=null) ok=window.MM_flash;
    else if (plgIn.indexOf("Director")!=-1 && window.MM_dir!=null) ok=window.MM_dir;
    else ok=autoGo ;}
  if (!ok) res="n";
  return res;
}
with (navigator) if (appName.indexOf('Microsoft')!=-1 && appVersion.indexOf('Mac')==-1) document.write(''+
'<scr'+'ipt language="VBScript">\nOn error resume next\n'+
'MM_dir = IsObject(CreateObject("SWCtl.SWCtl.1"))\n'+
'MM_flash = NOT IsNull(CreateObject("ShockwaveFlash.ShockwaveFlash"))\n</scr'+'ipt>');	

    rz="na";                 // Screen Rez
    cd="na";                 // Color Depth
    bn=navigator.appName;    // Browser Name
    if (bn.substring(0,9)=="Microsoft") {
       bn="MSIE";            // browser name, cont'd
    };         
    rz=screen.width+"*"+screen.height;  // Screen Rez, cont'd
    cd=(bn=="MSIE")?screen.colorDepth:screen.pixelDepth; // Color depth
    if (cd=="undefined") {
        cd="na";             // Color depth, cont'd
    }; 
    
    	g=Math.floor(Math.random()*1001)
	
	if (navigator.javaEnabled()) 
	j = "y";
	else 
	j = "n";
	
	// set some vars
	var requesturi    = escape (window.location);
	var referer       = escape (document["referrer"]) == '' ? '' : escape (document.referrer);
	var pagetitle     = escape (document["title"]) == '' ? '' : escape (document.title);	

	// flash version detection
	var flash = new Object();

	flash.installed = false;
	flash.version='0.0';

	if (navigator.plugins && navigator.plugins.length)
	{
		for (x=0; x<navigator.plugins.length; x++)
		{
			if (navigator.plugins[x].name.indexOf('Shockwave Flash') != -1)
			{
				flash.version=navigator.plugins[x].description.split('Shockwave Flash ')[1];
				flash.installed = true;
				break;
			}
		}
	} else if (window.ActiveXObject) {
		for (x=2; x<10; x++)
		{
			try
			{
				oFlash=eval("new ActiveXObject('ShockwaveFlash.ShockwaveFlash."+x+"');");
				if (oFlash)
				{
					flash.installed = true;
					flash.version=x+'.0';
				}
			}
			catch(e) {}
		}
	}

	flash.ver = (flash.installed && parseInt(flash.version) >= 2) ? parseInt(flash.version) : false;

    arg="<img src='http://web1.webstyler.ro/traffic/count.php?";
    arg+="rez="+rz+"&col="+cd+"&bull="+g+"&java="+j+"&shock="+checkPlugin('Shockwave for Director',false)+"&flash="+checkPlugin('Shockwave Flash',false)+"&flashver="+flash.ver+"&pagetitle="+pagetitle+"&requesturi="+requesturi+"&referer="+referer;
    arg+="'>";
	document.write (arg);
    //-->