//  Copyright (c) 2004 BillP Studios

var uwColor1;
var uwColor2;
var uwBorder;
var uwBorderColor;
var uwPadding;

var unWantedName =  new Array(
						"eUniverse/KeenValue",
						"My Way, My Web Page Hijacker",
						"Gator / Claria",
						"Net.net",
						"Better Internet - Transponder",

						"W32 Supernova Worm",
						"PowerREGISTER",
						"180Solutions",
						"Wild Tangent",
						"Huntbar",						
						
						"Tioga, Support.com",
						"WhenU.com",
						"ISTbar",
						"CommonName Toolbar"
						);

var unWantedURL = new Array(
						"http://www.winpatrol.com/db/freesample/wupdater.html",
						"http://www.winpatrol.com/db/freesample/mybar.html",
						"http://www.winpatrol.com/db/freesample/cmesys.html",
						"http://www.winpatrol.com/db/freesample/newdotnet.html",
						"http://www.winpatrol.com/db/freesample/bi.html",

						"http://www.winpatrol.com/db/freesample/sysupd.html",
						"http://www.winpatrol.com/db/freesample/powerreg.html",
						"http://www.winpatrol.com/db/freesample/msbb.html",
						"http://www.winpatrol.com/db/freesample/wcmdmgrl.html",
						"http://www.winpatrol.com/db/freesample/btiein.html",
						
						"http://www.winpatrol.com/db/freesample/tgcmd.html",
						"http://www.winpatrol.com/db/freesample/save.html",
						"http://www.winpatrol.com/db/freesample/istsvc.html",
						"http://www.winpatrol.com/db/freesample/cnbabe.html"
						);
					
						


var unWantedFile = new Array(
						"WUpdater.exe,INCFINDBHO.DLL",
						"MYBAR, MWSOEMON.EXE, MYWAY.DLL",
						"CMESYS.exe,Tricker*.exe, GTM.exe",
						"NetDotNet*.DLL",
						"BI.DLL, SUSP.EXE, BELT.EXE",

						"SYSUPD.EXE",
						"POWERREG SCHEDULER.EXE",
						"MSBB.EXE",
						"WCMDMGRL.EXE",
						"BTIEIN.DLL",
						
						"TGCmd.exe",
						"Save.exe, SaveNow.exe",
						"ISTSVC.EXE",
						"CNBABE.exe, CNBABE.DLL"
						);

function ListUnWanted()
{

	if(typeof(uwColor1) == "undefined")
	{
		uwColor1 = 'LightGrey';
	}
		
	if(typeof(uwColor2) == "undefined")
	{
		uwColor2 = '#ffdd33';
	}

	if(typeof(uwBorder) == "undefined")
	{
		uwBorder = 1;
	}
	if(typeof(uwBorderColor) == "undefined")
	{
		uwBorderColor = '000066';
	}

	if(typeof(uwPadding) == "undefined")
	{
		uwPadding = 5;
	}


	document.write("<table  border=" + uwBorder + " bordercolor=" + uwBorderColor + " cellspacing=0 cellpadding=" + uwPadding + " ");
	document.write(" bgcolor=" + uwColor2 +  " rules=rows >");
	document.write("<tr bgcolor=" + uwColor1 + "><td align=center colspan=2 >");
	document.write("<B>WinPatrol's Most Un-Wanted Programs</B></td></tr>");

	document.write("<tr bgcolor=" + uwColor1 + " ><td align=left ><B>Common Name</B></td><td><B>Program Detected by WinPatrol</b></td></tr>");
  
	for(i=0; i< 10; i++)
	{	
		document.write("<tr>");
		document.write("<td align=left >");
		document.write("<B>" + unWantedName[i] + "</B></td>");
		document.write("<td><A  href='" + unWantedURL[i] + "'>" + unWantedFile[i] + "</A></TD>");
		document.write("</tr>");
	}

	document.write("<tr bgcolor=" + uwColor1 + " ><td align=center colspan=2>");
	document.write("<small><A href='http://www.winpatrol.com/unwanted.html'>Add this list to your website</small></td></tr>");
	document.write("</table");


}
  