function winProdInfo(type)
 {
 //opens popbox to explain win product
 
 
    mywindow = window.open ("",  "mywindow","status=1,scrollbars=1, width=400,height=300");

 
 
 var tmp = mywindow.document;
 
 	tmp.write('<html><head>');
	tmp.write('<title>Product Information</title>');
	//tmp.write('<link rel="stylesheet" href="js.css">');
	tmp.write('</head><body>');
 	tmp.write('<DIV STYLE="font-family: arial, helvetica, sans-serif; font-size: 72.5%; color: #666;">');
 //write message 
	if(type == 'ms')
	{
 
		mesg= 'Retrospect Multi Server Edition runs on Windows 7 and other Windows operating systems, and provides licenses to protect an unlimited number of networked servers. In addition, Multi Server protects unlimited Windows, Macintosh, Linux, and Solaris desktops and notebooks, and now provides complete bare metal disaster recovery in the event of a catastrophic loss of data. Add-ons enable backup and restore of open files, SQL servers, and Exchange Servers.';
 
	}
	else if(type == 'ss')
	{
 
		mesg= '<p>Retrospect Single Server Edition runs Windows 7 and other Windows operating systems, and provides licenses to protect the host server and an unlimited number of networked Windows, Macintosh, Linux, and Solaris desktops and notebooks. In addition, Single Server now offers complete bare metal disaster recovery in the event of a catastrophic loss of data. Server Client licenses can be purchased to protect additional networked servers. Other add-ons enable backup and restore of open files, SQL servers, and Exchange Servers.</p>';
	}

	else if(type == 'sbs')
	{
		mesg= '<p>Retrospect Small Business Server is designed for a business with a server running Windows Small Business Server Premium edition operating system. It provides licenses to protect the host server plus networked Windows, Macintosh, Linux, and Solaris desktops and notebooks, and now offers complete bare metal disaster recovery in the event of a catastrophic loss of data. Server Client licenses can be purchased to protect additional networked servers. The Small Business Server Premium product also includes support for SQL and Exchange.</p>';
 
	}
	else if(type == 'dtd')
	{
		mesg= '<p>Retrospect Disk-to-Disk Edition runs on Windows 7 and other Windows operating systems. Disk-to-Disk backs up only to disk or optical media, protecting a single Windows server, and now provides complete bare metal disaster recovery in the event of a catastrophic loss of data. Disk-to-Disk is a low-cost and easy-to-manage alternative to tape drives and autoloaders.</p>';
 
	}
	else if(type == 'pro')
	{
		mesg= '<p>Retrospect Professional runs on Windows 7 and other Windows operating systems, and includes two client licenses to protect networked Windows, Macintosh, and Linux desktops and notebooks. In addition, Retrospect Professional now offers complete bare metal disaster recovery in the event of a catastrophic loss of data, and open file backup support. Client licenses can be purchased to extend protection to additional desktops and notebooks.</p>';
 
	}
	else
	{
		mesg= '';
	}
 

  //??? do I need this?
 // mywindow.moveTo(0,0);

 
 	tmp.write(mesg);
	tmp.write('</div></body></html>');
	tmp.close(); 
  
 }