
 



<html>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta name="keywords" content="i-drive, idrive, filo, clip, web, pages, store, research, research on the web, sync, synchronize, my, drive, mydrive,free, internet, hard, space,free, file, storage, virtual,MP3, MP3s,  music, files, freestuff,stuff, download, utility, document space,documentspace,docspace, doc space,floppy,disk,diskette,disk space,diskspace,imac,net,netfloppy, net,floppynet,net,netdrive,webdrive,free,freedrive,free, office,laptop, roadwarrior,road warrior,free,data,backup,laptop,software,free drive space,free disk space,i floppy,i-floppy,data,net data,data net,personal,iomega,zip, zip disk,jazz,removable, web clip, internet clip, save the web, web pages, secure, computer, desktop, internet desktop, builder, tools, tool, link, sideload, infinite,ftp, folder,upload,email, e-mail, attachment, attachments, send,mail,share"> 
<meta name="description" content="i-drive.com is an internet drive: space to store your stuff online and share it with friends. Store your resume,  MP3s, photos, or any file you want to access anywhere in the world.">



<head>
	<title>i-drive.com - Your FREE Personal Space on the Web</title>
	<meta http-equiv=Content-Type content="text/html; charset=iso-8859-1">

</head>
<script>

// this code snippet will bust i-drive out of anyone else's frame set, i.e. hotmail
if (top.location != self.location)
{
	top.location = self.location
}

var winFeatures;
var gMac;

var navAgnt = navigator.userAgent;
if (navAgnt.indexOf("mac") != -1 || navAgnt.indexOf("Mac") != -1) 
{
	gMac = true;
}


// create a smaller popup window height variable for Mac users
if (gMac == true)
{
	winFeatures = "toolbar=0,location=0,menubar=0, directories=0,scrollbars=0,status=0,resizable=1,width=600,Height=400";
}
else
{
	winFeatures = "toolbar=0,location=0,menubar=0, directories=0,scrollbars=0,status=0,resizable=1,width=600,Height=490";
}



function init()
{
	fillFields();
	focusField();
	setFormDestinations();	
}

function focusField()
{	
	var form,field;
	form = document.forms.idForm;
	
	if (getParameter("type")=="visit")
	{
		var form,field;
		form = document.forms.guest_form;
		if (form)
		{
			field = form.userid;
			if (field)
			{
				field.focus();
			}	
		}
	}

	else if (form && document.forms.login)
	{
		field = form.userid;

		if (field)
		{
			if (field.value && field.value.length > 0)
			{
				field = document.forms.login.password;
			}
		}
		if (field)
			field.focus();
	}
}

function removePlus(thisString)
{
	var result = "";

	for (var i = 0; i < thisString.length; i++)
	{
		var c = thisString.charAt(i);
		if (c == '+') 
		{
			result += " ";
		}	
		else 
		{
			result += c;
		}
	}
	
	return result;
}

var gNoSSL = false;

function fillFields()
{
	if (location.search)
	{
		var parameters = location.search.substr(1);
		if (null == parameters) parameters = sessionCookie;
		if (null != parameters)
		{
			parameters = parameters.split("&");
			var index;
		
			for (index = 0; index < parameters.length; index++)
			{
				var parameter = parameters[index];
		
				if (parameter == "nossl=true")
				{
					gNoSSL = true;
				}
				else
				{
					if (parameter.indexOf("=") == -1)
					{
						/* 
						This is a temporary fix so that if the user name isn't passed correctly into "welcometofilo.html,"	
						we don't end up sticking "null" into the login field. FIX ME. 
						*/			
						if (document.location.href.indexOf("welcometofilo") == -1 || parameter != "null")
						{
							document.forms.idForm.userid.value = parameter;
						}
					}
				}
			}
		}
	}
}

function copyLogin(form)
{
	form.userid.value = document.forms.idForm.userid.value;
	
	var selectList = document.idForm.input_domain;
	
	if (null != document.forms.idForm.input_domain)
	{
		form.domain.value = selectList.options[selectList.selectedIndex].text;
	}
	
	return true;
}

// Get the named parameter from href
function getParameter(inParameterName)
{
	var url					= window.location.href;
	var beginParamName		= url.indexOf(inParameterName);
	var value;	
	var start;
	var end;
	if (beginParamName != -1)
	{
		start	= beginParamName + inParameterName.length + 1;
		end		= url.indexOf("&", start);
		
		if (end == -1)
		{
			end = url.length;
		}
		value = url.substring(start, end);
	}
	else if (beginParamName == -1 && sessionCookie != null)
	{
		beginParamName = sessionCookie.indexOf(inParameterName);
		// Make sure to add Error Checking - what if beginParamName is still -1?
		if (beginParamName != -1)
		{
			start = beginParamName + inParameterName.length + 1;
			end = sessionCookie.indexOf("&", start);
			if (end == -1)
			{
				end = sessionCookie.length;
			}
			value = sessionCookie.substring(start, end);
		}
		else
		{
			value = "";
		}
	}
	else
	{
		value = "";
	}

	return removePlus(unescape(value));
}

var sessionCookie;
var allCookies = document.cookie;
var pos = allCookies.indexOf("LOGIN_ACTION_URL=");
if (pos != -1)
{
	var start = pos + 17;
	var end = allCookies.indexOf(";", start);
	if (end == -1)	end = allCookies.length;
	var value = allCookies.substring(start, end);
	value = unescape(value);

	sessionCookie = value;
}

function setFormDestinations()
{
	var formArray = [ "guest_form", "login" ];
	var host = this.location.hostname;
	var formIndex;

	// in case we need to use some other port tack that
	// on to the host name too. I'm guessing about
	// the port coming back as 80 or 0 if you don't specify
	// one in the url...in that case don't tack anything on.
	// FIX-ME check port 443.
	var port = this.location.port;
	
	if ((port != 80) && (port != 0))
	{
		host += ":" + this.location.port;
	}
	
	for (formIndex = 0; formIndex < formArray.length; formIndex++)
	{
		var theForm = this.document.forms[formArray[formIndex]];
		
		if (null != theForm)
		{
			var theAction = theForm.action;
			var index;
			
			/* in navigator JavaScript the action is absolute even if relative in the HTML
			*/
			if (-1 != (index = theAction.indexOf("//")))	// if it has a protocol separator, then host is specified
			{
				index = theAction.indexOf("/", index + 2);	// find next '/' after separator (after host)
				theAction = theAction.substr(index);		// get URL without host component
			}
		
			//	we need some way to determine local development boxes in the browser. previously
			//	I was looking to see if the hostname contained "localhost", but when we switched
			//	over to "real" names (chief.idrive.com), that no longer works. In the app tier
			//	this is being figured out by IP address (its specifically looking for our range)
			//	but you can't get the IP address of the machine through javascript. right now the
			//	only way to not get ssl on local development machines is to load the page with
			//	the nossl=true URL parameter.
			var insecure = (gNoSSL == true);
			theForm.action = (insecure ? "http://" : "https://") + host + theAction + window.location.search;
		}
	}
}


// showFindFriendWindow
// 
// Bring up the find friend window.

var findwindow = null;
function
showFindFriendWindow()
{
	findwindow = window.open("/mydrive/accounts/find.html?guestAccess",  "find", "resizable,scrollbars=yes,menubar=no,width=500,height=400,location=no", false);
	findwindow.focus();
}

// Bring up the forgot password window.
function opSupportPassword() {

	if ( _support != null && !_support.closed && 3 <= parseInt(navigator.appVersion)) {
		_support.focus();
	}
	
var _support = window.open('/mydrive/support_password.html','cssupport',winFeatures); 

}


function openTour(url, isFilo)
{	
	var winWidth;
	//Not sure where this conditional came from. Commenting out for now.
	//if (isFilo == true)
	//{
	winWidth = "490";
	//}
	//else
	//{	
	//	winWidth = "490";		
	//}
	
	utilityWin = window.open(url,'','toolbar=0,location=0,menubar=0, directories=0,scrollbars=0,status=0,resizable=0,width=' + winWidth + ',height=470');
	setTimeout('utilityWin.focus()', 10);
}


//pop-up function for the support pages and pwd recovery
function openPopUp(url)
{	
	utilityWin = window.open(url,"utilityWin",'toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1,width=680,height=580');
	setTimeout('utilityWin.focus()', 10);
}

textDisplay="generic";
loginColor="#eeeeee";
textColor="#000000";

if(location.href.indexOf("?=")!=-1)
{
        arrayOfStrings=location.href.split("?=")
		if(arrayOfStrings[1].substring(0,2)=="pc"||"ma")
		{
			if(arrayOfStrings[1].substring(0,2)=="pc")
			{
				textDisplay="pc"
			}
			else if(arrayOfStrings[1].substring(0,2)=="ma")
			{
				textDisplay="mac"
			}
           	loginColor="#FE6700"
           	textColor="#FFFFFF"
        }
}

/*
For "Registered User" login, we have one form for userID and another for password. This is so we can submit the form
with the enter key on Netscape. But if the user was to press enter with focus in the user id field (without entering a password), the user id was
being posted to the URL on the badlogin redirect. This was interfering with subsequent login attempts. This function 
prevents the userid form from being submitted and submits the login form (the second field holding the password) instead.
*/
function submitLoginForm()
{
	document.forms.login.submit();
}


</script>

<body bgcolor="#ffffff" onload="init();" link=#666666 alink=#666666 vlink=#666666>
<center>
<table cellpadding="0" align=center cellspacing="0" border="0" bgcolor=#000000>
<tr>
<td>
<table cellpadding=0 cellspacing=0 align=center border=0 width="740" bgcolor=#000000>
        <tr>
			<td bgcolor="#FFFFFF">&nbsp;</td>
			<td  width="572" bgcolor="#FFFFFF" align="middle">
<IFRAME SRC="https://ad.doubleclick.net/adi/idrive.login/;sz=468x60;tile=1;?" name="frame1" width="468" height="60" frameborder="no" border="0" MARGINWIDTH="0" MARGINHEIGHT="0" SCROLLING="no" >
<SCRIPT language="JavaScript1.1" SRC="https://ad.doubleclick.net/adj/idrive.login/;sz=468x60;tile=1;?"></SCRIPT>
<NOSCRIPT>

<a href="http://ad.doubleclick.net/jump/idrive.login/;abr=!ie;sz=468x60;tile=1;?" target=_blank>
<IMG SRC="https://ad.doubleclick.net/ad/idrive.login/;abr=!ie;sz=468x60;tile=1;?" border="0" height="60" width="468">
</a>

</NOSCRIPT>
</IFRAME>
			</td>
		</tr>
		<tr>
                <td bgcolor=#ffffff align=middle width=158>
<a href=/><img src="/mydrive/images/v2_logo.gif" width=122 height=41 vspace=3 hspace=5 alt=i-drive.com border="0"/></a></td>
                <td bgcolor=#ffffff align=right valign=bottom height=30 width=582>
			<table cellpadding=0 cellspacing=0 border=0 height=30 width=582>
				<tr>
					<td valign=top rowspan=2 width=10><img src="/mydrive/images/v2_top_curve_blue_left.gif" width=10 height=30 border=0 alt=""/></td>
					<td height=2 bgcolor=#000000 colspan=3 width="572"><img src="/mydrive/images/spacer.gif" width=572 height=2 border=0 alt=""/></td>
				</tr>
				<tr>
					<td bgcolor=#336699 width=1><img src="/mydrive/images/spacer.gif" width=1 height=28 border=0 alt=""/></td>
					<td bgcolor=#336699 width=569><B><font face="verdana, arial, helvetica" size="3" color=#ffffff>&nbsp;Free Online File Storage</font></B><br><img src="/mydrive/images/spacer.gif" width=569 height=1 border=0 alt=""/></td>
					<td bgcolor="#000000" width=2><img src=/mydrive/images/spacer.gif width=2 height=28 border=0 alt=""/></td>
				</tr>
			</table>
                </td>
        </tr>
        <tr>
                <td height=2 bgcolor=#000000 colspan=2 width="740">
<img src="/mydrive/images/spacer.gif" width=740 height=2 border=0></td>
        </tr>
        <tr>
                <td colspan=2 width="740">
                        <table cellpadding="0" cellspacing="0" border="0" width="740">
                                <tr>
                                        <td bgcolor="#000000" width=2><img src=/mydrive/images/spacer.gif width=2 height=24 border=0 alt=""/></td>
                                        <td align=left bgcolor=#003366 width="156" height="24">&nbsp;</td>
                                        <td align=right width="580" bgcolor=#003366>
                                                <!--need the following table to get around weird Mac IE5 only browser bug-->
                                                <table cellpadding="0" cellspacing="0" border="0" width="580">
                                                        <tr>
                                                                <td align="right">
                                                        <font face="verdana, arial, helvetica" size=-2 color=#ffffcc>
<a href="/site/product/prodintro.html"><font color=#ffffcc>Product</font></a>&nbsp;|&nbsp;
<a href="/site/corporate/corp_aboutus.html"><font color=#ffffcc>Company</font></a>&nbsp;|&nbsp;
<a href="/site/corporate/corp_jobs.html"><font color=#ffffcc>Jobs</font></a>&nbsp;|&nbsp;
<a href="/site/mediakit/product.html"><font color=#ffffcc>Advertise</font></a></b></font>&nbsp;&nbsp;</td>
   </tr>
                                                </table></td>
                                        <td bgcolor="#000000" width=2><img src=/mydrive/images/spacer.gif width=2 height=24 border=0 alt=""/></td>
                                </tr>
                        </table>
                </td>
        </tr>
</table>
</td>
</tr>
</table>

<table cellpadding="0" align=center cellspacing="0" border="0" width="740" bgcolor=#000000>
    <tr> 
  <td bgcolor="#000000" width=740><img src=/mydrive/images/spacer.gif width=740 height=2 border=0 alt=""/></td>
  </tr>
  <tr> 
	<td valign="top" align="right" width="740">
<table cellpadding="0" cellspacing="0" border="0" width="740">
  <tr>
  <td bgcolor="#000000" width=2><img src=/mydrive/images/spacer.gif width="2" border=0 alt=""/></td>
    <td bgcolor=#000000 valign="top" width="156">
	
					
		<table cellpadding="0" cellspacing="0" border="0">
			<tr>
				<td valign="top" width="156">

				    <table cellpadding="5" cellspacing="0" border="0">

				        <tr>
				        	<form name=idForm onSubmit="submitLoginForm();return false;">
	  			        	<script>document.write("<td valign=top bgcolor="+loginColor+" width=156>")</script>
							<script>document.write("<font color="+textColor+" face=verdana,arial,helvetica,sans-serif size=2>&#160;<b>Registered Users</b></br>&#160;user name:</br></font>")</script>
						&#160;<input type="text" name=userid size="13" tabIndex=1></br>
						</form>
		
				        	<form action=/mydrive/login.jsp method=post name=login onSubmit=copyLogin(this)>
							
							<script>document.write("<font color="+textColor+" face=verdana,arial,helvetica,sans-serif size=2>")</script>&#160;password:</br></font>
					 	<input type=hidden name=userid value="">
						
						<!--second hidden field to pass guest status-->
					 	<input type=hidden name=guest value=false>
						<input type=hidden name=fromLoginPage value=true>
					 	&#160;<input type=password name=password size=13 tabIndex=2></br>
						&#160;<input type="image" src="/mydrive/images/login_button3.gif" width="44" height="20" border="0" id=image1 name="Click here after typing your name and password" tabIndex=3></br>
						&#160;<a href="javascript:openPopUp('/mydrive/passwordRecovery.jsp');"><script>document.write("<font face=verdana, arial, helvetica color="+textColor+" size=-2>")</script>forgot password?</font></a></br>
						&#160;<a href="javascript:openPopUp('/mydrive/login_problems.html');"><script>document.write("<font face=verdana, arial, helvetica color="+textColor+" size=-2>")</script>need help?</font></a>
						</td>
						</form>
				        </tr>

		        	</table>
		        </td>
	        </tr>
            <tr bgcolor=#000000>
                <td><img src="/mydrive/images/spacer.gif" width="1" height="2" border="0"/></td>
            </tr>
	        <tr>
	            <td valign="top" width="156">
				<table cellpadding="5" cellspacing="0" border="0" width="156">
					<tr>
						<td valign="top" bgcolor="eeeeee">
						<form name=guest_form action=/mydrive/login.jsp method=post>
						<table cellpadding="0" cellspacing="0" border="0">
							<tr>
								<td colspan="2"><font color=#000000 face=verdana,arial,helvetica,sans-serif size=2>&#160;<b>Visitors</b></font></td>
							</tr>
							<tr>
								<td colspan="2"><font color=#000000 face=verdana,arial,helvetica,sans-serif size=2>&#160;destination i-drive:</font></td>
							</tr>
							<tr>
								<td valign="bottom">&#160;<input type="text" name=userid size="10" tabIndex=4></td>
								<td>&#160;<input type="image" src="/mydrive/images/visit_button.gif" width="44" height="15" border="0" align="right" value="Visit" tabIndex=5></td>
							</tr>
						<!--second hidden field to pass guest status-->
						</table>
						<input type=hidden name=guest value=true>
						<input type=hidden name=fromLoginPage value=true>
						</form>
						</td>
					</tr>
				</table>
	          	</td>
            </tr>

	        <tr bgcolor=#000000>
                <td><img src="/mydrive/images/spacer.gif" width="1" height="2" border="0"></td>
	        </tr>
            <tr>
                  <td bgcolor="#000000">
					<table cellpadding="0" cellspacing="0" border="0">
					
					<tr><td bgcolor="#000000"><table cellpadding="0" cellspacing="0" border="0" bgcolor="#000000" width="156"><tr><td valign=top bgcolor="#000000"><A HREF=http://www.idriveoncampus.com><img src="/mydrive/images/oncampustop.gif" width="156" border="0" height="45"></A><BR><img src="/mydrive/images/oncampusbottom.gif" width="156" height="117"></td></tr></table></td></tr>
					
					</table>
			</td></tr>
        </table>  
<!--  finish the table for login  -->
	</td>
	<td bgcolor="#000000" width="2"><img src="/mydrive/images/spacer.gif" width="2" border="0"></td>
	<td width="578" bgcolor="#336699" valign="top">
		<table width="578" cellpadding="0" cellspacing="0" border="0">
		<tr>
    	<td bgcolor="#336699" valign="top" width="378">
<!-- start nested table for the middle section -->

		<!--***************** middle nexus start ********************-->
<script>
function openTour2(){
var winWidth;
winWidth = "490";
utilityWin = window.open('/site/tour/why_use_filo.html','','toolbar=0,location=0,menubar=0, directories=0,scrollbars=0,status=0,resizable=0,width=' + winWidth + ',height=470');
setTimeout('utilityWin.focus()', 10);
}

textObject = new changeTEXT()
function changeTEXT(){
if (textDisplay=="generic")
{
this.value = "<table cellpadding=0 cellspacing=0 border=0 width=378 bgcolor=#ffffff height=360><tr><td rowspan=2 bgcolor=#336699 width=20>&#160;</td><td width=10 bgcolor=#FFFFFF>&nbsp;</td><td colspan=2 valign=bottom bgcolor=#ffffff width=348>&#160;</td></tr><tr><td width=10 bgcolor=#FFFFFF>&nbsp;</td><td valign=top width=90><a href=/mydrive/accounts/signup1.jsp><img src=/mydrive/images/new_users_button.gif width=84 height=150 border=0></a></td><td valign=top width=268 height=325><table cellpadding=0 cellspacing=0 border=0 width=268><tr><td colspan=2><img src=/mydrive/images/loginCenterCell.gif><BR><BR></td></tr><tr><td height=20 valign=top><img src=/mydrive/images/spacer.gif width=6 height=6 border=0 hspace=4 vspace=2></td><td height=20 valign=top><font face=verdana,arial,helvetica,sans-serif size=2><b>What's in it for you?</b></font></td></tr><tr><td height=20 valign=top><img src=/mydrive/images/bullet.gif alt= border=0></td><td height=20 valign=top><font face=verdana,arial,helvetica,sans-serif size=2>50 MB to store files on the Web</font></td></tr><tr><td height=20 valign=top><img src=/mydrive/images/bullet.gif alt= border=0></td><td height=20 valign=top><font face=verdana,arial,helvetica,sans-serif size=2>Infinite Space&#153; to store anything saved from the Web using <a href=javascript:openTour2()><font color=#000000>Filo&#153;</font></a></font></td></tr><tr><td height=20 valign=top><img src=/mydrive/images/bullet.gif alt= border=0></td><td height=20 valign=top><font face=verdana,arial,helvetica,sans-serif size=2>Collect & stream MP3s</font></td></tr><tr><td height=20 valign=top><img src=/mydrive/images/bullet.gif alt= border=0><BR><BR></td><td height=20 valign=top><font face=verdana,arial,helvetica,sans-serif size=2>Create & share photo albums</font><BR><BR></td></tr><tr><td height=20 valign=top><img src=/mydrive/images/spacer.gif width=6 height=6 border=0 hspace=4 vspace=2></td><td height=20 valign=top><a href=/mydrive/accounts/signup1.jsp><font face=verdana,arial,helvetica,sans-serif size=2><font color=#003366>Sign up for a free account now!</font></font></a></td></tr></table></td></tr><tr><td bgcolor=#336699 width=20 height=10><img src=/mydrive/images/spacer.gif width=20 height=10 border=0></td><td colspan=3 valign=bottom><img src=/mydrive/images/v2_hm_curve2.gif width=348 height=10 border=0></td></tr></table>";
}
else if (textDisplay=="mac")
{
this.value = "<table cellpadding=0 cellspacing=0 border=0 width=378 bgcolor=#ffffff height=360><tr><td height=20><img src=/mydrive/images/spacer.gif width=1 height=20 border=0/></td></tr><tr><td height=55>&#160;<img src=/mydrive/images/registeredusers.gif width=253 height=43 border=0/></td></tr><tr><td height=30>&#160;&#160;&#160;&#160;<a href=/mydrive/accounts/signup1.jsp><img src=/mydrive/images/newusers.gif width=236 height=23 border=0/></a></br></td></tr><tr><td height=10><img src=/mydrive/images/spacer.gif width=1 height=10 border=0/></td></tr><tr><td width=378 bgcolor=#FFFFFF valign=top><table cellpadding=0 cellspacing=0 border=0 width=378 bgcolor=#FFFFFF><tr><td width=10 valign=top>&#160;&#160;<img src=/mydrive/images/spacer.gif width=6 height=6 border=0 hspace=4 /></td><td><font face=verdana,arial,helvetica,sans-serif size=1><b>Using <nobr>i-drive</nobr> just got easier...</b></font></td></tr><tr><td width=10 valign=top>&#160;&#160;<img src=/mydrive/images/spacer.gif width=6 height=6 border=0 hspace=4 /></td><td><font face=verdana,arial,helvetica,sans-serif size=1>Drag and Drop and Filo&#153; are free software downloads that enable you to get the most out of your i-drive.</font></td></tr></table></td></tr><tr><td width=378 bgcolor=#FFFFFF><table cellpadding=0 cellspacing=0 border=0 width=378 bgcolor=#FFFFFF><tr><td width=10 valign=top><img src=/mydrive/images/bullet.gif width=6 height=6 border=0 hspace=4 vspace=2/></td><td valign=top><font face=verdana,arial,helvetica,sans-serif size=1>With Mac Drag and Drop, you can drag and drop files from your hard drive directly to your i-drive and back</font></td><td rowspan=6 valign=top><img src=/mydrive/images/draganddrop.gif width=157 height=64 border=0 hspace=4/></br><img src=/mydrive/images/spacer.gif width=1 height=10 border=0/></br><img src=/mydrive/images/clip.gif width=156 height=67 border=0 hspace=4/></td></tr><tr><td colspan=2><img src=/mydrive/images/spacer.gif width=1 height=10 border=0 /></td></tr><tr><td width=10 valign=top><img src=/mydrive/images/bullet.gif width=6 height=6 border=0 hspace=4 vspace=2/></td><td valign=top><font face=verdana,arial,helvetica,sans-serif size=1>Filo lets you &quot;clip&quot; Web pages, images, files and links straight to your i-drive</font></td></tr><tr><td colspan=2><img src=/mydrive/images/spacer.gif width=1 height=10 border=0 /></td></tr><tr><td width=10 valign=top>&#160;&#160;<img src=/mydrive/images/spacer.gif width=6 height=6 border=0 vspace=4 hspace=2 /></td><td><font face=verdana,arial,helvetica,sans-serif size=1 color=#666666>Mac&#160;OS 8.1 or higher and IE 4.01  or higher required</b></font></td></tr><tr><td width=10 valign=top>&#160;&#160;<img src=/mydrive/images/spacer.gif width=6 height=6 border=0 vspace=4 hspace=2 /></td><td><a href=/><font face=verdana,arial,helvetica,sans-serif size=1 color=#666666><b>Back to homepage</b></font></a></td></tr></table></td></tr></table>";
}
else if (textDisplay=="pc")
{
this.value = "<table cellpadding=0 cellspacing=0 border=0 width=378 bgcolor=#ffffff height=360><tr><td height=20><img src=/mydrive/images/spacer.gif width=1 height=20 border=0/></td></tr><tr><td height=55>&#160;<img src=/mydrive/images/registeredusers.gif width=253 height=43 border=0/></td></tr><tr><td height=30>&#160;&#160;&#160;&#160;<a href=/mydrive/accounts/signup1.jsp><img src=/mydrive/images/newusers.gif width=236 height=23 border=0/></a></br></td></tr><tr><td height=10><img src=/mydrive/images/spacer.gif width=1 height=10 border=0/></td></tr><tr><td width=378 bgcolor=#ffffff valign=top><table cellpadding=0 cellspacing=2 border=0 width=378 bgcolor=#ffffff><tr><td width=10 valign=top><img src=/mydrive/images/spacer.gif width=6 height=6 border=0 vspace=4 hspace=4 /></td><td colspan=2><font face=verdana,arial,helvetica,sans-serif size=1><b>Using <nobr>i-drive</nobr> just got easier...</b></font></br></td></tr><tr><td width=10 valign=top><img src=/mydrive/images/spacer.gif width=6 height=6 border=0 vspace=4 hspace=4 /></td><td colspan=2><font face=verdana,arial,helvetica,sans-serif size=1>With <nobr>i-drive</nobr> on your desktop you can:</font></br></br></td></tr><tr><td width=10 valign=top><img src=/mydrive/images/bullet.gif width=6 height=6 border=0 hspace=4 vspace=4/></td><td><font face=verdana,arial,helvetica,sans-serif size=1>Drag and drop files from your desktop to your <nobr>i-drive</nobr> and back.</font></td><td valign=top align=right rowspan=4><img src=/mydrive/images/screen_pc.gif width=120 height=96 hspace=5 border=0/></td></tr><tr>	<td width=10 valign=top><img src=/mydrive/images/bullet.gif width=6 height=6 border=0 hspace=4 vspace=4/></td><td><font face=verdana,arial,helvetica,sans-serif size=1>Access <nobr>i-drive</nobr> files from within MS Office (Word, Excel, etc.).</font></td></tr><tr><td width=10 valign=top><img src=/mydrive/images/bullet.gif width=6 height=6 border=0 hspace=4 vspace=4/></td><td><font face=verdana,arial,helvetica,sans-serif size=1>Send any file straight to your <nobr>i-drive</nobr> with a right click.</font></td></tr><tr><td width=10 valign=top><img src=/mydrive/images/bullet.gif width=6 height=6 border=0 hspace=4 vspace=4/></td><td><font face=verdana,arial,helvetica,sans-serif size=1>Upload and download multiple files at once.</font></br></br></td></tr><tr><td width=10 valign=top><img src=/mydrive/images/spacer.gif width=6 height=6 border=0 vspace=4 hspace=4 /></td><td colspan=2><font face=verdana,arial,helvetica,sans-serif size=1 color=#666666>PC:&#160;Microsoft Windows Internet Explorer 5.0 or higher</br> required</font></br></td></tr><tr><td width=10 valign=top><img src=/mydrive/images/spacer.gif width=6 height=6 border=0 vspace=4 hspace=4 /></td><td colspan=2><a href=/><font face=verdana,arial,helvetica,sans-serif size=1 color=#666666><b>Back to homepage</b></font></a><font face=verdana,arial,helvetica,sans-serif color=#666666>&#160;|&#160;</font><a href=javascript:nextpageMac()><font face=verdana,arial,helvetica,sans-serif size=1 color=#666666><b>Mac Users Click Here</b></font></a></br></br></td></tr></table></td></tr></table>";
}
}
document.write(textObject.value)
</script>
<!--*********************** middle nexus end ****************************-->
		

<!-- finish nested table for the middle section -->
    	</td>
    	<td bgcolor=#ffffcc valign="top" width="200">
<!-- start nested table for the right hand section: INFINITE DRIVE -->    
		<table cellpadding="0" cellspacing="0" border="0" bgcolor="#ffffcc" width="200">
	<tr>
		<td width="2" bgcolor="#cccccc" height="360"><img src="/mydrive/images/spacer.gif" width="2" height="360" border="0"></td>
		<td width="10"><img src="/mydrive/images/spacer.gif" width="10" height="1" border="0"></td>
		<td valign="top" align="center" width="178">
		<table cellpadding="0" cellspacing="0" border="0" width="178">
			<tr>
				<td colspan="2" valign="middle" align="center" width="178">
				<img src="/mydrive/images/spacer.gif" width="1" height="20" border="0"><BR>
				<font face="verdana,arial,helvetica,sans-serif" size="1" color="#003366">I opened an account with<BR>i-drive through my school<BR>and it works GREAT!<BR><B>G. Kernell, College Student <BR> Berkeley, California</B></font></BR>
				<img src="/mydrive/images/spacer.gif" width="1" height="10" border="0">
				</td>
			</tr>
			<tr>
				<td colspan="2" valign="top" bgcolor="#cccccc" height="1"><img src="/mydrive/images/spacer.gif" width="1" height="1" border="0"></td>
			</tr>
			<tr>
				<td colspan="2"><font face="verdana,arial,helvetica,sans-serif" size="2" color="#ff6600">
				<img src="/mydrive/images/spacer.gif" width="1" height="15" border="0"></br>
				<b>Tools for your <nobr>i-drive</nobr></b>
				</br><img src="/mydrive/images/spacer.gif" width="1" height="10" border="0"></font></td>
			</tr>
<script language="javascript">

		function nextpageMac() {
			window.location.href="/index.html?=mac"
		}

		function nextpagePC() {
			window.location.href="/index.html?=pc"
		}

		var bMac = false;
		var ua = navigator.userAgent;
		bMac = (ua.indexOf("Mac") >= 1);
		
		x = new changeTEXT()
		x2 = new changeURL()
		x3 = new changeHeader()
		
		// sniff OS.  Put different message for mac.
		function changeTEXT(){
		if (bMac)
		{
			this.value = "<nobr>i-drive</nobr> introduces drag and drop functionality for the Mac.";
		}
		else
		{
			this.value = "Drag and drop files to and from your <nobr>i-drive</nobr>.";
		}
		}
		
		function changeURL(){
		if (bMac)
		{
			this.value ="javascript:nextpageMac()";
		}
		else
		{
			this.value="javascript:nextpagePC()";
		}
		}
		
		function changeHeader(){
		if (bMac)
		{
			this.value ="Add Drag and Drop";
		}
		else
		{
			this.value="Add <nobr>i-drive</nobr> To Your Desktop";
		}
		}
</script>
			<tr>
				<td width="45" valign="top"><script>document.write("<a href="+x2.value+">")</script><img src="/mydrive/images/webfolders_icon.gif" width="35" height="35" border="0" href=""></a></td>
				<td width="133" valign="top"><font face="verdana,arial,helvetica,sans-serif" size="1"><script>document.write("<a href="+x2.value+">")</script><font color="#000000"><b><script>document.write(x3.value)</script></b></font></a></br><script>document.write(x.value)</script></font></td>
			</tr>
			<tr>
				<td colspan="2"><img src="/mydrive/images/spacer.gif" width="1" height="15" border="0"></td>
			</tr>
			<tr>
				<td width="45" valign="top"><a href="javascript:openTour('/site/tour/why_use_filo.html', true)"><img src="/mydrive/images/clip_icon.gif" width="30" height="34" border="0"></a></td>
				<td width="133" valign="top"><font face="verdana,arial,helvetica,sans-serif" size="1"><a href="javascript:openTour('/site/tour/why_use_filo.html', true)"><font color="#000000"><b>Clip &amp; Save Web Pages</b></font></a></br>
				Use Filo&#153; to save any Web page for keeps.</font></td>
			</tr>
			<tr>
				<td colspan="2"><img src="/mydrive/images/spacer.gif" width="1" height="15" border="0"></td>
			</tr>
			<tr>
				<td width="45" valign="top"><img src="/mydrive/images/free_stuff.gif" width="32" height="32" border="0"></td>
				<td width="133" valign="top"><font face="verdana,arial,helvetica,sans-serif" size="1">
				<b>Free Stuff</b></br>
				Login and click "Free Stuff" to fill up your <nobr>i-drive</nobr> with animations, music &#38; more.
				</font></td>
			</tr>
		</table>
		</td>
		<td width="10"><img src="/mydrive/images/spacer.gif" width="10" height="1" border="0"></td>
	</tr>
</table>
<!-- finish nested table for the right hand section: INFINITE DRIVE -->  

    	</td></tr>
		<tr><td colspan="2">
			<table cellpadding="0" cellspacing="0" border="0" width="578">
			<tr><td bgcolor="#336699" align="center" width="378">
				<font face="verdana, arial, helvetica" color="#ffffff" size="-2">&copy; 2000 i-drive.com all rights reserved<br><a href="/site/corporate/corp_security.html"><font color="#ffffff">Security</font></a>&nbsp;|&nbsp;<a href="/site/corporate/corp_privacy.html"><font color="#ffffff">Privacy</font></a>&nbsp;|&nbsp;<a href="/site/product/prodfaq.html"><font color="#ffffff">FAQ</font></a></font>
			</td><td width="200">
				&nbsp;
			</td></tr>
			</table>
		</td></tr>
		</table>
	</td>
	<td bgcolor="#000000" width="2"><img src="/mydrive/images/spacer.gif" width="2" border="0"></td>
  </tr>
  
</table>
</td>
</tr>
<tr>
<td bgcolor="#000000" height="2" width="740"><img src="/mydrive/images/spacer.gif" width="740" height="2" border="0"></td>
</tr>
</table>
</td>
</tr>
</table>



<table border="0" cellspacing="0" cellpadding="0">
<tr>
	<td bgcolor="#ffffff" valign="middle" align="middle">
		<font size=-5 color="#ffffff">HEPATITIS2_R18_BRANCH-2000_1122_1538aa_(ayinger)_webstar1-2.idrive.com<br></font>
<center><A HREF="https://digitalid.verisign.com/as2/85dceeac8bb14f9c428bf5c23326c18a" TARGET="new"><img src="/mydrive/images/sm_verisign.gif" width="100" height="42" border="0" alt=""></A></center>

	</td>
</tr>
</table>

</center>
</body>
</html>



