
function myChangeScript()
{
	selectedVal=document.forms.Important.MyComboBox.value;
	if(selectedVal=="1")
	{
		document.getElementById("headlines").innerHTML="<img src='site_pics/h_0_roi.gif' width='245' height='45' /><p>MHOne provides:</p><ul> <li>Enterprise-class utility computing platform</li> <li>On-demand scalability</li> <li>Flexibility for seasonal and event demand</li> <li>Ability to align infrastructure with business needs</li> </ul> <h3><a href='infinistructure_overview.aspx'>// Learn More</a><h3>";
	}
	if(selectedVal=="2")
	{
		document.getElementById("headlines").innerHTML="<img src='site_pics/h_0_os.gif' width='245' height='45' /><p>MHOne provides:</p> <ul> <li>Award-winning support for Windows-based servers and applications</li> <li>Microsoft Gold Certified Partner</li><li>The only Linux provider to be certified by HP</li> <li>Experience managing large scale database clusters<br /> </li> </ul> <h3><a href='mh-one_technologies.aspx'>// Learn More</a><h3>";
	}
	if(selectedVal=="3")
	{
		document.getElementById("headlines").innerHTML="<img src='site_pics/h_0_ts.gif' width='245' height='45' /> <p>MHOne gives you more than just support.  It gives you Smart Support, with:</p> <ul> <li>Named account manager and support team</li> <li>Decade of experience managing some of the busiest, most complex sites online</li> <li>24/7 access to technology experts</li> <li>digitalOps: service delivery platform </li> </ul><h3><a href='smart-support_overview.aspx'>// Learn More</a><h3>";
	}
	if(selectedVal=="4")
	{
		document.getElementById("headlines").innerHTML="<img src='site_pics/h_0_m_r.gif' width='245' height='45' /><p>MHOne uses Data Return's advanced digitalOps system to deliver:</p> <ul> <li>Hardware, software and deep application monitoring</li> <li>Accurate, instant reporting on use, trends and reliability to help you plan for future use<br /> </li> </ul> <h3><a href='smart-support_digitalops.aspx'>// Learn More</a><h3>";
	}
	if(selectedVal=="5")
	{
		document.getElementById("headlines").innerHTML="<img src='site_pics/h_0_rep.gif' width='245' height='45' /><p>MHOne is brought to you by Data Return:</p> <ul> <li>Recognized as a &ldquo;Visionary&rdquo; company by Gartner Research</li> <li>Two-time Microsoft Global Service Provider of the Year winner</li> <li>The choice of more than 250 companies around the world<br /> </li> </ul> <h3><a href='the-bottom-line.aspx'>// Learn More</a><h3>";
	}
	if(selectedVal=="6")
	{
		document.getElementById("headlines").innerHTML="<img src='site_pics/h_0_bos.gif' width='245' height='45' /><p>A full range of services, from implementation through support:</p> <ul> <li>Dedicated account management</li> <li>Implementation services</li> <li>Monitoring services</li> <li>Support services</li> <li>Administrative services</li> </ul> <h3><a href='mh-one_services.aspx'>// Learn More</a><h3>";
	}
	if(selectedVal=="7")
	{
		document.getElementById("headlines").innerHTML="<img src='site_pics/h_0_sec.gif' width='245' height='45' /><p>MHOne is safe and secure with:</p> <ul> <li>Multilayer, state-of-the-art security services</li> <li>PCI compliant firewalls</li> <li>Hardware load balancing</li> <li>Agent-based application and database backup services</li> </ul> <h3><a href='mh-one_security.aspx'>// Learn More</a><h3>";
	}
	
}


// Default MM dHTML rollever sytax.

 var whitespace = " \t\n\r";
 
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_findObj(n, d) { //v4.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && document.getElementById) x=document.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

// Preload images
  MM_preloadImages('site_pics/nav_chat_over.gif','site_pics/nav_email_over_wide.gif','site_pics/nav_call_over_wide.gif');
  
  
  function isValidEmail(str,al) {
   if ((str.indexOf(".") > 2) && (str.indexOf("@") > 0) )
   {
      return true;
   }
 else 
 {
 alert(al);
 return false;
 }
}
 
 
  
function isValidPhone(val,str)
{	var PNum = new String(val);		
var regex = /^[0-9]{3,3}\-[0-9]{3,3}\-[0-9]{4,4}$|^\([0-9]{3,3}\) [0-9]{3,3}\-[0-9]{4,4}$|                     ^\([0-9]{3,3}\)[0-9]{3,3}\-[0-9]{4,4}$|^[0-9]{3,3}\-[0-9]{4,4}$/;		
if(regex.test(PNum))
{ return true;}
else
{alert(str);
return false;}
}


function isEmpty(s)
      { return ((s == null) || (s.length == 0)) }


function isWhitespace (s)
      {
           var i;

           if (isEmpty(s)) return true;

      
           for (i = 0; i < s.length; i++)
           {
      
                var c = s.charAt(i);

                if (whitespace.indexOf(c) == -1) return false;
           }

      
           return true;
      }


     function ForceEntry(val, str) {
           var strInput = new String(val.value);

           if (isWhitespace(strInput)) {
                alert(str);
                return false;
           } else
                return true;

           if (isValidEmail(strInput)) {
                alert(str);
                return false;
           } else
                return true;

      }
      
       function ValidateData() {
           var CanSubmit = false;
           CanSubmit = ForceEntry(document.forms[0].txtFromEmailID,"Please Enter your email Id.");
           if (!CanSubmit) return false;
           CanSubmit = ForceEntry(document.forms[0].txttoEmailID,"Please Enter your Friend's email Id.");
           if (!CanSubmit) return false;            
           CanSubmit = isValidEmail(document.forms[0].txtFromEmailID.value,"Please Enter a Valid Email Id")
           if (!CanSubmit) return false;
           CanSubmit = isValidEmail(document.forms[0].txttoEmailID.value,"Please Enter a Valid Email Id")

           return CanSubmit;
      }
      
      
      
      
function Getmytext(id)
{
selectedval=id;
if(selectedval=="1")
{
document.getElementById("Dedicated").innerHTML="<br/><ul><li>White-Box servers</li><li>On-board storage</li><li>Limited ability to upgrade servers</li><li>No fault tolerance for hardware failure</li><li>Additional capacity bought in large increments</li></ul>"
document.getElementById("mhone").innerHTML="<br/><ul><li>INFINISTRUCTURE™ NEXT-GENERATION UTILITY COMPUTING PLATFORM, BUILT ON ENTERPRISE-CLASS HP & AMD TECHNOLOGY<li><li>ENTERPRISE-CLASS MULTI-TERABYTE FIBER-ATTACHED STORAGE ARRAY</li><li>CONTINUOUS TECHNOLOGY UPGRADE PROGRAM</li><li>LIVE FAILOVER ELIMINATES DOWNTIME DUE TO HARDWARE FAILURE</li><li>ON-DEMAND ACCESS TO ADDITIONAL PROCESSING, STORAGE, MEMORY, BANDWIDTH</li></ul>"

}
if(selectedval=="4")
{
document.getElementById("Dedicated").innerHTML="<br/><ul><li>Basic Sales Support</li><li>Call-center technical support</li></ul>"
document.getElementById("mhone").innerHTML="<br/><ul><li>Assigned Sales Consultant</li><li>Enterprise Technical Account Manager</li><li>Assigned 24x7 Enterprise Support Team</li></ul>"
}
if(selectedval=="7")
{
document.getElementById("Dedicated").innerHTML="<br/><ul><li>Basic setup: OS, hardware, network </li></ul>"
document.getElementById("mhone").innerHTML="<br/><ul><li>Project Based Deployment with assigned Project Manager & Implementation Engineer</li><li>Database and Application Installation Services</li></ul>"
}
if(selectedval=="2")
{
document.getElementById("Dedicated").innerHTML="<br/><ul><li>Limited Support Help Desk Services</li><li>Call-center environment</li><li>Network, Hardware and Operating System Support Only</li></ul>"
document.getElementById("mhone").innerHTML="<br/><ul><li>Unlimited 24/7 Access to assigned Smart Support team<li><li>Onsite experts in Web, Database and Application Servers</li><li>Automatic Escalation Utilizing Premier Support Agreements with Key Vendors</li><li>Application-specific return-to-service procedures</li></ul>"
}
if(selectedval=="5")
{
document.getElementById("Dedicated").innerHTML="<br/><ul><li>Self-service File Level Backup</li><li>Automated OS Patching Services</li></ul>"
document.getElementById("mhone").innerHTML="<br/><ul><li>Managed Backup Services for File Systems, Applications, and Databases</li><li>Customizable Backup and Archival Services</li><li>Patch Discovery, Review, Testing and Deployment Services for Operating Systems and Server Applications</li><li>Anti-Virus Protection and Management</li><li>Comprehensive Change Management Services and Change Reporting through digitalOps</li></ul>"
}
if(selectedval=="8")
{
document.getElementById("Dedicated").innerHTML="<br/><ul><li>Basic ping, port and keyword monitoring</li></ul>"
document.getElementById("mhone").innerHTML="<br/><ul><li>Predictive Hardware Health Monitors</li><li>Device Availability Monitors</li><li>Application Performance Monitoring</li><li>Deep Application Diagnostic Monitors </li><li>Custom Monitor Development</li><li>digitalOps Alert Management System</li><li>Self-service Trend Analysis and Report Generation Tools</li></ul>"
}
if(selectedval=="3")
{
document.getElementById("Dedicated").innerHTML="<br/><ul><li>Basic Server and Network Device provisioning and connectivity management</li><li>Software based firewall and load balancing products</li></ul>"
document.getElementById("mhone").innerHTML="<br/><ul><li>Fully redundant network architecture</li><li>PCI-Compliant Cisco Firewalls</li><li>Hardware-based Load Balancers</li><li>Enhanced Load Balancer Features</li><li>Enhanced Firewall Policy Management</li><li>Bandwidth Reporting through digitalOps</li></ul>"
}
if(selectedval=="6")
{
document.getElementById("Dedicated").innerHTML="<br/><ul><li>Local Server User Account</li></ul>"
document.getElementById("mhone").innerHTML="<br/><ul><li>Managed Directory Services</li><li>Private Network Design with Secure Port Management</li><li>Network Intrusion Detection Services with Real-Time Monitoring Services</li><li>Hardware and Software Data Encryption Services</li></ul>"
}
if(selectedval=="9")
{
document.getElementById("Dedicated").innerHTML="<br/><ul><li>Network SLA</li></ul>"
document.getElementById("mhone").innerHTML="<br/><ul><li>Managed Device SLA</li><li>Network SLA</li><li>Data Center SLA</li></ul>"
}


}


function rollon(which) {
	
	document.images[which].src = "site_pics/interim nav/" + which + "_over.gif";
}

function rollout(which) {
	document.images[which].src = "site_pics/interim nav/" + which + ".gif";
	
}



  function ValidateForm() {
           var CanSubmit = false;
 
           
           CanSubmit = ForceEntry(document.forms[0].txtEmail,"Please Enter your email Id.");
           if (!CanSubmit) return false;
           
           CanSubmit = isValidEmail(document.forms[0].txtEmail.value,"Please Enter a Valid Email Id");
           if (!CanSubmit) return false;
           
           return CanSubmit;
      }
      