// JavaScript Document
function writeMenu(rootPath){
document.writeln("<div class=\"self_menu\">");
document.writeln("        	<div class=\"self_menu_title\">体验专区<\/div>");
document.writeln("            <div class=\"self_menu_list\">");
document.writeln("            	<ul>");
document.writeln("                	<li><a href=\""+rootPath+"\/index.jsp\">体验专区首页<\/a><\/li>");
document.writeln("                    <li><a href=\""+rootPath+"\/iptv\/index.jsp\">IPTV<\/a><\/li>");
document.writeln("                    <li><a href=\""+rootPath+"\/terminal\/index.jsp\">商务领航<\/a><\/li>");
document.writeln("                    <li><a href=\""+rootPath+"\/onlinepay\/index.jsp\">电话支付<\/a><\/li>");
document.writeln("                    <li><a href=\""+rootPath+"\/centre\/index.jsp\">企业总机<\/a><\/li>");
document.writeln("                    <li><a href=\""+rootPath+"\/globaleye\/index.jsp\">家庭版全球眼<\/a><\/li>");
document.writeln("                    <li><a href=\""+rootPath+"\/long/index.jsp\">亲情长话<\/a><\/li>");
document.writeln("                <\/ul>");
document.writeln("            <\/div>");
document.writeln("            <div class=\"self_menu_bottom\"><\/div>");
document.writeln("        <\/div>")
}

