
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-16">
<link rel="shortcut icon" href="/supportline/000/favicon_tcm21-7604.ico">
<link rel="stylesheet" type="text/css" href="/_includes2/css/mfstyle.css">
<link href="/_includes2/css/reset-min.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="/_includes2/css/menu.css"><script type="text/javascript" src="/_includes2/js/TemplateFunctions.js"></script><script type="text/javascript" language="javascript" src="/_includes2/js/GeneralJSFunctions.js"></script><script type="text/javascript" language="javascript" src="/leftnav.js"></script><script src="/_includes2/js/jquery-1.3.1.min.js" type="text/javascript"></script><script src="/_includes2/js/jquery_hoverIntent.js" type="text/javascript"></script><meta name="google-site-verification" content="KLptqs7otqIxiPVyL09kC7OCIb0vRjsPyXO2reOdM3k">
<title>Micro Focus SupportLine</title><SCRIPT language="javascript" src="error.js"></SCRIPT><SCRIPT language="javascript">
			var ERR_CLIENT_TITLE = "";
			var ERR_SERVER_TITLE = "";
			var ERR_LE_TITLE = "";
			var ERR_PARSER_TITLE = "";
			var INFO_PHUB_TITLE = "";
			var ERR_VALIDATION_TITLE = "";
			var ERR_DEFAULT_TITLE = "";
			
			var ERR_TIME_STAMP_FORMAT = "";
			var ERR_DATE_FORMAT = "";
			var ERR_REQUIRED_FIELD = "";
			var PAGE_TITLE_INFO = "";
			var PAGE_TITLE_ERROR = "";
		</SCRIPT><SCRIPT LANGUAGE="JavaScript">

				var nav4 = window.Event ? true : false;

				function codes(e)
				{
					if (nav4) // Navigator 4.0x
					{
						var whichCode = e.which;
					}
					else // Internet Explorer 4.0x
					{
						if (e.type == "keypress") // the user entered a character
						{
							var whichCode = e.keyCode;
						}
					}

					if (whichCode == 13)
					{
						SubmitHandler();
					}
				}

</SCRIPT><SCRIPT language="Javascript">
				
				function defLoadPage()
				{				
				
					document.MainForm.UserID.focus();
					
	 				document.MainForm.UserID.value = getCookie("UserID");
	 				document.MainForm.Password.value = getCookie("Password");

	 				var checkval = getCookie("AutoLogin");
					if (checkval == "true")	document.MainForm.AutoLogin.checked = 1;
					else document.MainForm.AutoLogin.checked = 0;

					//show server message here, first detemine whether there is ANY
					if ( document.serverScriptMessages.elements.length > 0)
					{
						alert ("hello");
						for ( var i = 0; i < document.serverScriptMessages.elements.length; i++ )
						{
							errWindow( TITLE_TYPE_PHUB_INFO, document.serverScriptMessages.elements[i].value, ICON_TYPE_INFO );
						}
					}
				}

				function openURL( URL )
				{
					window.open("http://" + URL, "","");
				}
				
				function classChange(element, className)
				{		
					element.className = className;
				}
				
				function SubmitHandler() 
				{   
 				var var_UserId= document.MainForm.UserID.value;
				var var_Password=document.MainForm.Password.value;

					CheckValues();					
					return false;   

				}

function getCookie (name) {
 var arg = name + "=";
 var alen = arg.length;
 var clen = document.cookie.length;
 var i = 0;
 while (i < clen) {
   var j = i + alen;
   if (document.cookie.substring(i, j) == arg)
     return getCookieVal (j);
   i = document.cookie.indexOf(" ", i) + 1;
   if (i == 0) break; 
 }
 return "";
}

function getCookieVal (offset) {
 var endstr = document.cookie.indexOf (";", offset);
 if (endstr == -1)
   endstr = document.cookie.length;
 return unescape(document.cookie.substring(offset, endstr));
}



function alert_confirm(language) 
{


	if ( confirm( "Select OK to make " + language + " your default language on this site or CANCEL to just use it for this session." )) 
					{ 
					WriteCookie("Language", language, 1000 * 60 * 60 * 24 * 1 * 31);
					window.location = 'xmlloader.asp?type=home&langsw=1';
					} 
					else 
					{ 
					WriteCookie("Language", language, "" );
					window.location ='xmlloader.asp?type=home&langsw=1'; 
					}
	return false;
}








//function alert_confirm() {

				//if (document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value != "none") 
				//{
					//language = document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value;

					//if ( confirm( "Select OK to make " + language + " your default language on this site or CANCEL to just use it for this session." )) 
					//{ 
					//WriteCookie("Language", language, 1000 * 60 * 60 * 24 * 1 * 31);
					//window.location = 'xmlloader.asp?type=home&langsw=1';
					//} 
					//else 
					//{ 
					//WriteCookie("Language", language, "" );
					//window.location ='xmlloader.asp?type=home&langsw=1'; 
					//}
				//}
//}    

function WriteCookie (cookieName, cookieValue, expiry) 	{
		var expDate = new Date();

		if(expiry)
		{
			expDate.setTime (expDate.getTime() + expiry);
   			 document.cookie = cookieName + "=" + escape (cookieValue) + "; expires=" + expDate.toGMTString();
		 }
		  else
		  {
        document.cookie = cookieName + "=" + escape (cookieValue);
	}
}
				function CheckValues()
				{

					var var_UserId= document.MainForm.UserID.value;
					var var_Password=document.MainForm.Password.value;
					var var_AutoLogin=document.MainForm.AutoLogin.checked;
					
					// if all required fields not filled, display error in dialog box
					if (var_UserId == "") 
					{
						alert("You must enter a valid user name.");
						document.MainForm.UserID.focus()
					}
					else 
					{	
					
					if (var_AutoLogin == 1)
					{
							WriteCookie("UserID", var_UserId, 1000 * 60 * 60 * 24 * 1 * 31);
							WriteCookie("Password", var_Password, 1000 * 60 * 60 * 24 * 1 * 31);
							WriteCookie("AutoLogin", var_AutoLogin, 1000 * 60 * 60 * 24 * 1 * 31);
					}
					else
					{
						WriteCookie("UserID", "");
						WriteCookie("Password", "");
						WriteCookie("AutoLogin", "");		
					
					}

						document.MainForm.submit();
					}
				}
				
				
			
</SCRIPT><SCRIPT language="Javascript">
    $(document).ready(function(){

		
	    var IEver = getInternetExplorerVersion();
		if (IEver == 7){
		$("#nav li ul").css("margin-top","-6px");
		}
		else if(IEver == 8){
		$("#nav li ul").css("margin-top","0px");
		}
		else{
		$("#nav li ul").css("margin-top","0px");
		}
		
		
		$('.close-button').click(function () { 
		
			$("#nav li ul").slideUp('fast'); 
		
		});
		

		
		$("#nav li").hoverIntent({
				sensitivity: 3, 
				interval: 200, 
				over: makeTall, 
				timeout: 500, 
				out: makeShort
			});
			
			$(".lang_first").hover(
			function () {
				$(this).children("ul").css('display', 'block');
			}, 
			function () {
				$(this).children("ul").css('display', 'none');
			}
		);


/****** Comment START
               $("#nav").hoverIntent({
				sensitivity: 3, 
				interval: 200, 
				over: hideTitle, 
				timeout: 500, 
				out: showTitle
			});
			
			//new for IE6	
				$(".lang_first").hover(
			function () {
				$(this).children("ul").css('display', 'block');
			}, 
			function () {
				$(this).children("ul").css('display', 'none');
			}
		);
Comment END *******/



$(".lang_first").hover(
			function () {
				$(this).children("ul").css('display', 'block');
			}, 
			function () {
				$(this).children("ul").css('display', 'none');
			}
		);
 
 
                                /// Tabs
                                
	                $('.single_content').hide(); 
	                $('.navi li:first').addClass('active');
	                $('.single_content:first').show();
 
                                /// On Click Event
	                $('.navi li').click(function() {
		$('.navi li').removeClass('active');
		$(this).addClass('active');
		$('.single_content').hide();
		var activeTab = $(this).find('a').attr('href');
		$(activeTab).fadeIn(500);
	                 });










		}); // close document.ready
		
		


				
		function hideTitle(){

                               var IEver = getInternetExplorerVersion(); 
                                if (IEver == 7){
                                $(".floating").css('z-index', '-1');
                                }
		}
		
		function showTitle(){
                                
                                var IEver = getInternetExplorerVersion();
                                if (IEver == 7){
                                setTimeout('$(\".floating\").css(\'z-index\', \'2\')', 1000)
                                setTimeout('$(\".floating div\").css(\'z-index\', \'2\')', 1000)
                                }
		}
                           
		function makeTall(){
		var CurrentId = this.id;
		
		var test = "#" + CurrentId +"";

		try{
		$(test).children("ul").slideDown('fast');
		$(test).children("div").slideDown('fast');
		}
		catch(err){}
		}
		
		function makeShort(){ 
		var CurrentId = this.id;
		//alert(CurrentId);
                              
		var test = "#" + CurrentId +"";
                            
		try{
		$(test).children("ul").slideUp('fast');
		$(test).children("div").slideUp('fast');
		}
		catch(err){}

		}

      function getInternetExplorerVersion()
      // Returns the version of Internet Explorer or a -1
      // (indicating the use of another browser).
     {
       var rv = -1; // Return value assumes failure.
       if (navigator.appName == 'Microsoft Internet Explorer'){
           var ua = navigator.userAgent;
           var re  = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
       if (re.exec(ua) != null)
          rv = parseFloat( RegExp.$1 );
      }
      return rv;
     }

	</SCRIPT><style type="text/css">

/*
    .SLhome {
    border-top: 1px solid #EAEAEA;
    border-right: 1px solid #EAEAEA;
    border-left: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;
    width: 563px;
    margin-top:25px;

    }


    .cellpaddingTop {
    padding-top: 4px;
    padding-left: 10px;
    padding-bottom: 0;
    }

    .cellpaddingLeft {
    padding-left: 10px;
    padding-top: 0;
    padding-bottom: 0;
    }

    .cellpaddingBottom {
    padding-bottom: 4px;
    padding-left: 0px;
    border-top: 1px solid #EAEAEA;
    }

    .cellpaddingRight {
    padding-right: 10px;
    padding-left: 5px;
    }
*/

    /*#test9 .MenuLinks, #test9 .MenuLinks:visited, #test9 .MenuLinks:hover {
    padding: 5px 49px 3px 1px;*/
    }

  


</style>
</head>
<body>
<FORM name="serverScriptMessages">
</FORM><SCRIPT language="Javascript" xmlns:fo="http://www.w3.org/1999/XSL/Format">
 function searchWord()
 {
 if (document.googleform.q.value.toLowerCase()=="search")
 {document.googleform.q.value=""};
 }
  
 </SCRIPT><div class="webHeaderContainer" xmlns:fo="http://www.w3.org/1999/XSL/Format">
<div class="toppanel"><a href="http://www.microfocus.com/products/product-trials/index.aspx" id="product_trials" target="_blank">Product Trials</a><a href="https://www.componentsource.com/store/microfocus" id="store" target="_blank">Store</a><a href="http://community.microfocus.com" id="community" target="_blank">Community</a></div>
</div>
<div class="webDropDownContainer" xmlns:fo="http://www.w3.org/1999/XSL/Format">
<div id="menu">
<div>
<div>
<ul>
<li class="navCnt0"><a href="/">Home</a></li>
<li class="navCnt1"><a href="http://www.microfocus.com/solutions">Solutions</a><ul>
<li><a href="http://www.microfocus.com/solutions/virtualmainframe/" target="_self">Virtual Mainframe</a></li>
<li><a href="http://www.microfocus.com/solutions/cobol/" target="_self">COBOL without barriers</a></li>
<li><a href="#" target="_self">Borland solutions</a></li>
</ul>
</li>
<li class="navCnt2"><a href="http://www.microfocus.com/products/" target="_self">Products</a><ul>
<li><a href="http://www.microfocus.com/products/caliber/index.aspx" target="_self">Caliber - Requirements Definition and Management</a></li>
<li><a href="http://www.microfocus.com/products/enterprise/index.aspx" target="_self">Enterprise - Mainframe Workload Migration and Re-hosting</a></li>
<li><a href="http://www.microfocus.com/products/iSight/index.aspx" target="_self">i.Sight - Application Analysis and Understanding</a></li>
<li><a href="http://www.microfocus.com/products/micro-focus-developer/index.aspx" target="_self">Micro Focus Developer - COBOL and Developer Tools</a></li>
<li><a href="http://www.microfocus.com/products/rumba/index.aspx" target="_self">Rumba - Terminal Emulation and Business Process Modernization</a></li>
<li><a href="http://www.microfocus.com/products/silk/index.aspx" target="_self">Silk - Automated Software Quality</a></li>
<li><a href="http://www.microfocus.com/products/StarTeam/index.aspx" target="_self">StarTeam - Software Change and Configuration Management</a></li>
<li><a href="http://www.microfocus.com/products/visibroker/index.aspx" target="_self">VisiBroker - CORBA Middleware and Application Server</a></li>
<li class="zoneTextSeparator"></li>
<li class="zoneText">
<a href="http://www.microfocus.com/products/productsa-z/index.aspx" xmlns="http://www.w3.org/1999/xhtml">PRODUCTS A-Z</a>
                                       | <a href="http://www.microfocus.com/products/product-trials/index.aspx" xmlns="http://www.w3.org/1999/xhtml">PRODUCT TRIALS</a> | <a href="http://www.microfocus.com/forms/process.aspx" xmlns="http://www.w3.org/1999/xhtml">CONTACT US</a>
</li>
</ul>
</li>
<li class="navCnt3"><a href="http://www.microfocus.com/Resources/customers/" target="_self">Customers</a><ul>
<li><a href="http://www.microfocus.com/resources/customers/Index.aspx?keywords=Products,Product Line - Caliber&amp;sortby=date" target="_self">Caliber</a></li>
<li><a href="http://www.microfocus.com/resources/customers/Index.aspx?keywords=Products,Product Line - Enterprise&amp;sortby=date" target="_self">Enterprise</a></li>
<li><a href="http://www.microfocus.com/resources/customers/Index.aspx?keywords=Products,Product Line - Micro Focus Developer" target="_self">Developer</a></li>
<li><a href="http://www.microfocus.com/resources/customers/Index.aspx?keywords=Products,Product Line - i.Sight&amp;sortby=date" target="_self">iSight</a></li>
<li><a href="http://www.microfocus.com/products/rumba/index.aspx" target="_self">Rumba</a></li>
<li><a href="http://www.microfocus.com/resources/customers/Index.aspx?keywords=Products,Product Line - Silk" target="_self">Silk</a></li>
<li><a href="http://www.microfocus.com/resources/customers/Index.aspx?keywords=Products,Product Line - StarTeam&amp;sortby=date" target="_self">StarTeam</a></li>
<li class="zoneTextSeparator"></li>
<li class="zoneText">
<span id="twolinks" xmlns="http://www.w3.org/1999/xhtml">
<a href="http://www.microfocus.com/resources/customers/">BROWSE BY FILTER</a>|<a href="http://www.microfocus.com/resources/customer-successes/custsuccess.aspx">VIEW ALL</a>
</span>
</li>
</ul>
</li>
<li class="navCnt4"><a href="http://www.microfocus.com/Services/" target="_self">Services</a><ul>
<li><a href="http://www.microfocus.com/Services/value_profile_day_service.aspx" target="_self">Value Profile Day</a></li>
<li><a href="http://www.microfocus.com/Services/test-process-modernization.aspx" target="_self">Test Process Modernization</a></li>
<li><a href="http://www.microfocus.com/Services/portfolio-modernization.aspx" target="_self">Portfolio Modernization</a></li>
<li><a href="http://www.microfocus.com/Services/language-modernization.aspx" target="_self">Language Modernization</a></li>
<li><a href="http://www.microfocus.com/Services/platform-modernization.aspx" target="_self">Platform Modernization</a></li>
<li><a href="http://www.microfocus.com/Services/test-data-management.aspx" target="_self">Test Data Management</a></li>
<li><a href="http://www.microfocus.com/Services/Application-Health-Check.aspx" target="_self">Application Health Check</a></li>
<li><a href="http://www.microfocus.com/Services/resource-modernization.aspx" target="_self">Resource Modernization</a></li>
<li><a href="http://www.microfocus.com/Services/software_process_improvement.aspx" target="_self">Software Process Improvement</a></li>
<li><a href="http://www.microfocus.com/Services/Field-Developed-Solutions.aspx" target="_self">Field Developed Solutions</a></li>
<li><a href="http://www.microfocus.com/Services/Customer-Care-Education-Services.aspx" target="_self">Customer Care and Education Services</a></li>
<li><a href="http://www.microfocus.com/Services/Project_Review_Service.aspx" target="_self">Project Review Service</a></li>
<li class="zoneTextSeparator"></li>
<li class="zoneText">
<a href="http://www.microfocus.com/_ex/External/website/Services/sc.pdf" xmlns="http://www.w3.org/1999/xhtml">SERVICES CATALOGUE</a>
</li>
</ul>
</li>
<li class="navCnt5"><a href="http://www.microfocus.com/partners/index.aspx" target="_self">Partners</a><ul>
<li><a href="http://www.microfocus.com/partners/global_strategic/index.aspx" target="_self">Global Strategic</a></li>
<li><a href="http://www.microfocus.com/partners/system_integrators/index.aspx" target="_self">System Integrators</a></li>
<li><a href="http://www.microfocus.com/partners/speciality/index.aspx" target="_self">Speciality</a></li>
<li><a href="http://www.microfocus.com/partners/resellers/index.aspx" target="_self">Resellers</a></li>
<li><a href="http://www.microfocus.com/partners/hardware_oems/index.aspx" target="_self">Hardware OEMs</a></li>
<li><a href="http://www.microfocus.com/partners/migration_transformation_consortium/index.aspx" target="_self">Migration and Transformation Consortium</a></li>
<li><a href="http://www.microfocus.com/partners/isv/index.aspx" target="_self">Independent Software Vendors</a></li>
<li><a href="http://www.microfocus.com/partners/partners-only/index.aspx" target="_self">Partners Only</a></li>
</ul>
</li>
<li class="navCnt6"><a href="#" target="_blank">Support</a><ul>
<li><a href="http://supportline.microfocus.com/mydetails.asp" target="_self">My Details</a></li>
<li><a href="http://supportline.microfocus.com/assistedservices.asp" target="_self">My Incidents</a></li>
<li><a href="http://kb.microfocus.com" target="_self">Knowledge Base</a></li>
<li><a href="http://supportline.microfocus.com/websync/index.asp" target="_self">Product Updates</a></li>
<li><a href="http://supportline.microfocus.com/licensing/LicensingHome.asp" target="_self">Licensing</a></li>
<li><a href="http://supportline.microfocus.com/productdoc.aspx" target="_self">Product Documentation</a></li>
<li><a href="http://supportline.microfocus.com/examplesandutilities/index.asp" target="_self">Examples and Utilities</a></li>
<li><a href="http://supportline.microfocus.com/supportresources.asp" target="_self">Support Resources</a></li>
<li><a href="http://community.microfocus.com/" target="_self">Community Forums</a></li>
<li><a href="http://supportline.microfocus.com/000/MF_Support_CC.pdf" target="_blank">Our Services</a></li>
<li><a href="http://www.microfocus.com/promotions/wwadcrpf0710/default.aspx?page=landing" target="_blank">Customer Reference Program</a></li>
</ul>
</li>
<li class="navCnt7"><a href="http://www.microfocus.com/education-services/" target="_self">Education</a><ul>
<li><a href="#" target="_self">Instructor Led Training</a></li>
<li><a href="#" target="_self">Web Based Training</a></li>
<li><a href="http://www.microfocus.com/education-services/academic/index.aspx" target="_self">Academic</a></li>
<li class="zoneTextSeparator"></li>
<li class="zoneText">
<a href="#" target="_blank" xmlns="http://www.w3.org/1999/xhtml">TRAINING STORE</a>
</li>
</ul>
</li>
<li class="navCnt8"><a href="http://www.microfocus.com/about/index.aspx" target="_self">About</a><ul>
<li><a href="http://www.microfocus.com/about/At-a-Glance/" target="_self">At-a-Glance</a></li>
<li><a href="http://www.microfocus.com/about/careers/" target="_self">Careers</a></li>
<li><a href="http://www.microfocus.com/about/contact/" target="_self">Contact Micro Focus</a></li>
<li><a href="http://www.microfocus.com/about/responsibility/index.aspx" target="_self">Corporate Responsibility</a></li>
<li><a href="http://www.microfocus.com/about/industry-analysts/" target="_self">Industry Analysts</a></li>
<li><a href="http://investors.microfocus.com" target="_self">Investor Relations</a></li>
<li><a href="http://www.microfocus.com/about/legal/" target="_self">Legal Statement</a></li>
<li><a href="http://www.microfocus.com/about/press/" target="_self">Press Room</a></li>
<li><a href="http://www.microfocus.com/about/worldwide/index.aspx" target="_self">Worldwide Websites</a></li>
<li class="zoneTextSeparator"></li>
<li class="zoneText">
<a title="investors" href="http://investors.microfocus.com/" target="_blank" xmlns="http://www.w3.org/1999/xhtml">INVESTORS</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="webMainContainer">
<div id="alternateBanner" title="">
<div class="roundContainer">
<div class="logoHolder" title="">&amp;nbsp;</div>
<div class="ttlHolder">
<table border="0" align="left" cellpadding="0" cellspacing="0" class="ttlContainer">
<tr>
<td class="ttl01"></td>
<td class="ttl02"></td>
</tr>
</table>
</div><img src="/_images/Supportline.gif" alt="" title="Micro Focus"><div class="">
<div class="flags_SL"><a href="http://www.microfocus.co.jp/support/"><img src="/_images/homepage/flags/japanese-flag.gif" border="0" alt="Japanese"></a><a href=""><img src="/_images/homepage/flags/german-flag.gif" border="0" alt="German" onclick="javascript:return alert_confirm('German')"></a><a href=""><img src="/_images/homepage/flags/spanish.gif" border="0" alt="Spanish" onclick="javascript:return alert_confirm('Spanish')"></a><a href=""><img src="/_images/homepage/flags/french-flag.gif" border="0" alt="French" onclick="javascript:return alert_confirm('French')"></a><a href=""><img src="/_images/homepage/flags/us-flag.gif" border="0" alt="English" onclick="javascript:return alert_confirm('English')"></a></div>
</div>
</div>
</div>
<div class="sub_main">
<div class="sub_main_top_round">
<div class="breadcrumb">
<ul xmlns:fo="http://www.w3.org/1999/XSL/Format">
<li class=""><a href="http://www.microfocus.com/">Home</a></li>
<li class="">SupportLine</li>
</ul>
</div>
</div>
<div class="slMidZone">
<div class="SLhomeMidZoneAnimContainer">
</div>
</div>
<div class="sub_body">
<div class="clear"></div>
<div class="sub_sub_mainleft">
<div class="leftnav" xmlns:fo="http://www.w3.org/1999/XSL/Format">
<div class="viewbyrole">SUPPORTLINE</div>
<UL>
<li id="101" class="ln"><A onclick="expandcollapseone(5);" href="http://www.microfocus.com/about/contact/Support/assistance.aspx">Contact SupportLine</A></li>
<li class="ln"><A href="xmlloader.asp?type=home">Login</A></li>
<li id="102" class="ln"><A class="" onclick="expandcollapseone(2);" href="/mydetails.asp">My Details </A><ul id="2" STYLE="DISPLAY: NONE;">
<li class=""><A href="/mf_profile.aspx">My Personal Profile</A></li>
<li class=""><A href="/mf_product_profile.asp">My Product Profile</A></li>
<li class=""><A href="/mf_password.asp">Change Password</A></li>
</ul>
</li>
<li id="103" class="ln"><a href="/assistedservices.asp" onclick="expandcollapseone(3);">My Incidents </a><ul id="3" STYLE="DISPLAY: NONE;">
<li class=""><A href="/enhancement.asp">Suggestion Box</A></li>
<li class=""><A href="/mf_incident_add.aspx">Report an Incident</A></li>
<li class=""><A href="/mf_incidentsearch.aspx">Advanced Search</A></li>
<li class=""><A href="/mf_incidentdisplay.aspx?report=byidallopen">My Open Incidents&gt;</A></li>
<li class=""><A href="/mf_incidentdisplay.aspx?report=byidall">All My Incidents</A></li>
<li class=""><A href="/mf_incidentdisplay.aspx?report=bycoall">My Company Incidents</A></li>
</ul>
</li>
<li id="104" class="ln"><A href="#" onclick="launchPortal();">Knowledge Base</A></li>
<li id="105" class="ln"><A onclick="expandcollapseone(5);" href="/websync/index.asp">Product Updates</A></li>
<li id="106" class="ln"><A onclick="expandcollapseone(6);" href="/licensing/LicensingHome.asp">Licensing</A><ul id="6" STYLE="DISPLAY: NONE;">
<li class="ln-s1"><A href="/licensing/iSight.aspx">i.Sight</A></li>
<li class="ln-s1"><A href="/licensing/MWMigration.aspx">Mainframe Workload Migration</A></li>
<li class="ln-s1"><A href="/licensing/Windows1.asp">COBOL &amp; Developer Tools</A></li>
<li class="ln-s1"><A href="/licensing/Rumba.aspx">Rumba</A></li>
<li class="ln-s1"><A href="/licensing/testing_ASQ.asp">Silk</A></li>
<li class="ln-s1"><A href="/licensing/licVerification.aspx">License Verification</A></li>
</ul>
</li>
<li id="107" class="ln"><A onclick="expandcollapseone(6);" href="/productdoc.aspx">Product Documentation</A></li>
<li id="108" class="ln"><A onclick="expandcollapseone(8);" href="/examplesandutilities/index.asp">Examples and Utilities</A><ul id="8" class="ln-s1" STYLE="DISPLAY: NONE;">
<li class="ln-s1"></li>
</ul>
</li>
<li id="109" class="ln"><A onclick="expandcollapseone(9);" href="/supportresources.asp">Support Resources</A><ul id="9" STYLE="DISPLAY: NONE;">
<li class="ln-s1"><A href="/supportresources/Acucobolgt/acucobolgt.asp">ACUCOBOL-GT</A></li>
<li class="ln-s1"><A href="http://www.microfocus.com/products/Withdrawal/index.asp">Product Withdrawal</A></li>
<li class="ln-s1"><A href="/supportresources/borplatforminfo.aspx">Borland Platform Info</A></li>
<li class="ln-s1"><A href="/supportresources/borextendedsupport.aspx">AppServer and VisiBroker Support Dates</A></li>
<li class="ln-s1"><A href="/prodavail.aspx">Product Availability and Support Schedule</A></li>
<li class="ln-s1"><A href="/productreleaselevels/unix.asp">Unix/Linux Product Matrix</A></li>
<li class="ln-s1"><A href="/productreleaselevels/index.asp">Windows Product Matrix</A></li>
<li class="ln-s1"><A href="/licensing/Product_Update.asp">Request Latest Version</A></li>
</ul>
</li>
<li id="110" class="ln"><A onclick="expandcollapseone(10);" href="http://community.microfocus.com/Home?loc=hptopimg">Micro Focus Community</A></li>
<li id="113" class="ln"><A onclick="expandcollapseone(13);" href="http://www.microfocus.com/education-services/academic/support/">Academic Support</A><ul id="13" STYLE="DISPLAY: NONE;">
<li class="ln-s1"></li>
</ul>
</li>
<li id="111" class="ln"><A onclick="expandcollapseone(11);" href="/000/MF_Support_CC.pdf" target="_blank">Our Services</A><ul id="11" STYLE="DISPLAY: NONE;">
<li class="ln-s1"></li>
</ul>
</li>
<li class="ln-s1"><A href="http://www.microfocus.com/promotions/wwadcrpf0710/default.aspx?page=landing" target="_blank">Customer Reference</A></li>
</UL>
</div>
<div class="sub_sub_body">
<div class="sub_main_left" style="text-align:left;">
<form method="post" action="login.asp" name="MainForm" onSubmit="return SubmitHandler()" target="_top">
<table class="SLhome" cellspacing="0" cellpadding="0">
<tr>
<td colspan="2" class="SLhomeTop"></td>
</tr>
<tr>
<td colspan="2" class="SLhomeTaut"><strong>Please login to access your personalized support page.</strong></td>
</tr>
<tr>
<td class="FormLabel"><strong>User Name:</strong></td>
<td class="form_element_container"><input onkeypress="codes(event)" tabindex="1" maxlength="32" size="16" name="UserID" class="form_element"></td>
</tr>
<tr>
<td class="FormLabel"><strong>Password:</strong></td>
<td valign="top" align="left"><input onkeypress="codes(event)" tabindex="2" type="password" maxlength="20" size="16" name="Password" class="form_element"></td>
</tr>
<tr>
<td class="FormLabel"><strong>Auto Login? </strong><input type="hidden" name="redirectpage" value=""></td>
<td valign="top"><input onkeypress="codes(event)" tabindex="4" type="checkbox" value="ON" name="AutoLogin" class="form_element_checkbox"><input tabindex="3" type="image" alt="Submit" src="/_images/spacer.gif" value="Submit" class="form_element_submit" name="I1"></td>
</tr>
<tr>
</tr>
<tr>
<td colspan="2" class="SLhomeHelp"><a href="/supportline/contact/questionsform.asp" target="_self">Need Help?</a></td>
</tr>
<tr>
<td class="SLhomeLnk" colspan="2"><span><a href="mf_registration.asp?webregistrationstatus=0" target="_self">
                                                                                Register
                                                                               &gt;&gt;
                                                                        </a> |
                                                                            <a href="forgotpassword.asp" target="_self">Password reminder &gt;&gt;</a> | <a href="http://www.microfocus.com/about/contact/Support/assistance.aspx">Contact Support &gt;&gt;</a><br></span></td>
</tr>
<tr>
<td class="SLhomeAdd" colspan="2"><span>
                                                                       If you would like to comment on any aspect of the Micro Focus service, please email us at <a href="mailto:feedback.supportline@microfocus.com">feedback.supportline@microfocus.com</a>.
                                                                    </span></td>
</tr>
<tr>
<td colspan="2" class="SLhomeBot"></td>
</tr>
</table>
</form>
</div>
</div>
<div class="clear"></div>
</div>
<div class="clear"></div><br></div>
<div class="clear">
</div>
<div class="RoundedCornersWide"></div>
<div class="sub_main_bottom_round"></div>
</div>
</div>
  <div class="footerContainerHome">
    <div class="footer">
      <div class="footerinner"> <br />
        <div class="footerMenu"><a href="" class="first">Home</a> <a href="http://www.microfocus.com/modernization/">Solutions</a> <a href="http://www.microfocus.com/products/">Products</a> <a href="http://www.microfocus.com/resources/customers">Customers</a> <a href="http://www.microfocus.com/Services/">Services</a> <a href="http://www.microfocus.com/partners/index.aspx">Partners</a><a    href="http://supportline.microfocus.com/" target="_blank">Support</a> <a href="http://www.microfocus.com/education-services">Education</a> <a href="http://www.microfocus.com/about">About</a>
        </div>
        <div class="footerwidecol">
          <h6>Resource Centers</h6>
          <ul>
            <li><a href="http://www.microfocus.com/mcro/business-transformation/"  class="Application Modernization" target="_self">Application Modernization</a></li>
            <li><a href="http://www.microfocus.com/mcro/cobol/"  class="COBOL" target="_self">COBOL</a></li>
            <li><a href="http://www.microfocus.com/mcro/cqa/"  class="Continuous Quality Assurance" target="_self">Software Quality Assurance </a></li>
            <li><a href="http://www.microfocus.com/mcro/rdm/"  class="Requirements Definition and Management" target="_self">Requirements Definition and Management</a></li>
            <li><a href="http://rumba.microfocus.com/"  class="Terminal Emulation" target="_blank">Terminal Emulation</a></li>
          </ul>
          <p>&nbsp;</p>
        </div>
        <div class="footerwidecol">
          <h6>Resources</h6>
          <ul>
            <li><a href="http://blog.microfocus.com/" class="Blog" target="_blank">Blog</a></li>
            <li><a href="http://www.microfocus.com/resources/display.aspx?schema=466" class="View All Customer Successes" target="_self">Customers</a></li>
            <li><a href="http://www.microfocus.com/resources/display.aspx?schema=467" class="Data Sheets" target="_blank">Data Sheets</a></li>
            <li><a href="http://www.microfocus.com/resources/events/index.aspx" target="_self">Micro Focus Events</a></li>
            <li><a href="http://www.microfocus.com/resources/Newsletter/index.aspx" class="Newsletters" target="_self">Newsletter</a></li>
            <li><a href="http://www.microfocus.com/products/product-trials/index.aspx" target="_self">Product Trials</a></li>
            <li><a href="http://www.microfocus.com/resources/display.aspx?page=1&keyword1=tcm:6-108770-1024&schema=769" class="View All Webcasts" target="_self">View All Webcasts</a></li>
            <li><a href="http://www.microfocus.com/resources/whitepapers/index.aspx" class="Browse White Papers" target="_self">White Papers</a></li>
          </ul>
          <p>&nbsp;</p>
        </div>
        <div class="footerwidecol">
          <h6>Products</h6>
          <ul>
            <li><a href="http://www.microfocus.com/products/caliber/index.aspx" target="_self">Caliber</a></li>
            <li><a href="http://www.microfocus.com/products/enterprise/index.aspx" target="_self">Enterprise</a></li>
            <li><a href="http://www.microfocus.com/products/micro-focus-developer/index.aspx" target="_self">Micro Focus Developer</a></li>
            <li><a href="http://www.microfocus.com/products/isight/index.aspx" target="_self">i.Sight</a></li>
            <li><a href="http://www.microfocus.com/products/rumba/index.aspx" target="_self">Rumba</a></li>
            <li><a href="http://www.microfocus.com/products/silk/index.aspx" target="_self">Silk</a></li>
            <li><a href="http://www.microfocus.com/products/starteam/index.aspx" target="_self">StarTeam</a></li>
            <li><a href="http://www.microfocus.com/products/visibroker/index.aspx" target="_self">VisiBroker</a></li>
            <li><a href="http://www.microfocus.com/products/productsa-z/index.aspx" target="_self">Products A - Z</a></li>
          </ul>
          <p>&nbsp;</p>
        </div>
        <div class="footerwidecol">
          <h6>Useful Links</h6>
          <ul>
            <li><a href="http://www.microfocus.com/about/index.aspx" target="_self">Contact Micro Focus</a></li>
            <li><a href="http://www.microfocus.com/about/careers/index.aspx#vacancies" class="Current vacancies" target="_self">Current Vacancies</a></li>
            <li><a href="http://www.microfocus.com/Federal-Government/index.aspx" target="_self">Federal Government</a></li>
            <li><a href="http://www.microfocus.com/partners/isv/index.aspx" target="_self">Independent Software Vendors</a></li>
            <li><a href="http://investors.microfocus.com" class="Investor relations link" target="_blank">Investor Relations</a></li>
            <li><a href="http://www.microfocus.com/resources/Newsletter/index.aspx" class="Newsletter" target="_self">Subscribe to In Focus</a></li>
            <li><a href="http://www.microfocus.com/about/press/index.aspx" target="_self">Press Room</a></li>
            <li><a href="http://www.microfocus.com/partners/distributorlist.asp" class="Reseller Information" target="_blank">Reseller Information</a></li>
          </ul>
          <p>&nbsp;</p>
        </div>
        <!-- -->
        <div class="footerLogo"></div>
        <div class="footercopyright"> <img src="/_images/logo_footer.gif" width="74" height="23" alt="MicroFocus &reg;" /><br />
          <p><a href="http://www.microfocus.com/AboutMicroFocus/Legal/">&copy; 2001 - 2012 Micro Focus IP Development Limited. All rights reserved.</a></p>
        </div>
        <!-- -->
        <div class="footerShare">
          <!-- AddThis Button BEGIN -->
          <a class="addthis_button" href="http://www.addthis.com/bookmark.php?v=250&amp;username=xa-4d3ec5e34a4ef26d"><img src="http://s7.addthis.com/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a>
          <script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=xa-4d3ec5e34a4ef26d"></script>
          <!-- AddThis Button END -->
        </div>
        <!-- -->
        <div class="clear"> </div>
        <div class="footertext">
          <p> </p>
        </div>
        <p>&nbsp; </p>
        <div class="clear"> </div>
      </div>
      <br />
      <div class="clear">&nbsp;</div>
    </div>
    <div class="clear">&nbsp;</div>
  </div>
    <!-- /footer -->
<!--google analitics-->
<!--script language="javascript" src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script-->
<!--script type="text/javascript">
_uacct = "UA-216886-9";
urchinTracker();
</script-->
  <script type="text/javascript">
    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
  </script>
  <script type="text/javascript">
    var pageTracker = _gat._getTracker("UA-216886-9");
    pageTracker._trackPageview();
  </script>
  
  </body>
</html>

