// JavaScript Document

function divshow(){
	
	document.getElementById('tv').style.display='block';
	document.getElementById('main').style.display='block';
	//document.getElementById('cover').style.display='block';
	document.getElementById('movie').innerHTML='<div class="planpop" id="popbox"><h1 class="txtheader">The Family Pack Plan <span class="close" onClick="hide()"></span></h1><div class="popdiv"><p>The Family Pack Plan is especially useful if you are backing up multiple computers to a single IDrive account OR have a need to backup more than 150 GB.  Signup, Setup the IDrive client with the same account credentials for up to 5 computers. You have a total storage space of 500 GB to backup.<br /><br />Example: You might have a PC with pictures and about 50 GB of data to backup while another PC storing important data files might have 300 GB of data. You can backup both of these PC&rsquo;s to a single Family Pack account.<br /><br /></p><p>Here is how you can setup the Family Pack option: </p><ol><li> Sign up for this plan or upgrade from a regular IDrive plan to Family Pack - this allows you to backup data from 5 computers to a single IDrive account.<br /><br /><img src="/images/ide_family_web_1.jpg" height="335px" width="450px"><br /><br /></li><li> Backup data from each of those computers to this account. This is how your data looks on the restore interface for the Family Pack option.<br /><br><img src="/images/ide_restore_family_1.jpg" height="262px" width="450px"><br><br></li><li> The file / folder hierarchy of the backed up data is retained to enable you to easily access the data you are looking for retrieval so simply select what you want to restore and click the restore button.</li><li> You can also restore data backed up from one computer (visible under that computer name identifier, drill down to the respective file/folder) on your Family Pack account to any another local computer.</li><li> Sync is possible only for that relevant computer from where data was backed up. This ensures consistency of backed up data.</li><li>You cannot backup both PCs and Macs under a single Family Pack account.</li></ol>To sign up, <a href="https://www.idrive.com/idrivee/jsp/ide_prosignup.jsp" target="_parent" class="linkbody">click here</a>.<br /><br />&nbsp;	</div></div>';
	document.getElementById('movie').style.display='block';
	document.getElementById('overlay').style.display='block';
	
	
}
function hide()
{
	document.getElementById('tv').style.display='none';
	document.getElementById('main').style.display='none';
	//document.getElementById('cover').style.display='block';
	document.getElementById('movie').style.display='none';
	document.getElementById('overlay').style.display='none';
}


