function DisplayMenu()
{		
	IncludeFile('UserControls/DearFriend.htm','Dear');
	IncludeFile('UserControls/Benefits.htm','Ben');
	IncludeFile('UserControls/contactus.htm','Con');
	IncludeFile('UserControls/Millionaire.htm','Mil');
	IncludeFile('UserControls/Business.htm','Bus');
	IncludeFile('UserControls/Faq.htm','Fa');
	IncludeFile('UserControls/Welldone.htm','Well');
	IncludeFile('UserControls/Steps.htm','Step');
	//IncludeFile('UserControls/Livesupport.htm','Live');
}
function DisplayMenuInside()
{		
	IncludeFile('../UserControls/DearFriend.htm','Dear');
	IncludeFile('../UserControls/Benefits.htm','Ben');
	IncludeFile('../UserControls/contactus.htm','Con');
	IncludeFile('../UserControls/MillionaireSub.htm','Mil');
	IncludeFile('../UserControls/Business.htm','Bus');
	IncludeFile('../UserControls/Faq.htm','Fa');
	IncludeFile('../UserControls/Welldone.htm','Well');
	IncludeFile('../UserControls/Steps.htm','Step');
	//IncludeFile('../UserControls/Livesupport.htm','Live');
}
function DisplayAdminInside()
{
	IncludeFile('../UserControls/contactus.htm','Con');
	IncludeFile('../UserControls/Webmaster.htm','Web');
	//IncludeFile('../UserControls/Livesupport.htm','Live');
}

function Clickheretoprint()
{ 
  var disp_setting="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
      disp_setting+="scrollbars=yes,width=800, height=600, left=100, top=10"; 
  var content_vlue = document.getElementById("print_content").innerHTML; 
  
  var docprint=window.open("","",disp_setting); 
   docprint.document.open(); 
   docprint.document.write('<html><head><title>Get Your Money</title>'); 
   docprint.document.write('<LINK href="../Stylesheet/Styles.css" rel="stylesheet">')
   docprint.document.write('</head><body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" onLoad="self.print()">');   
   docprint.document.write('<table cellpadding="0" align="left" class="clsText" cellspacing="0" border="0" width="100%"><tr><td>');     
       
   docprint.document.write(content_vlue);    
   docprint.document.write('</td></tr></table>');      
   docprint.document.write('</body></html>'); 
   docprint.document.close(); 
   docprint.focus(); 
}

function Clickheretoprinter()
{ 
  var disp_setting="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
      disp_setting+="scrollbars=yes,width=800, height=600, left=100, top=10"; 
  var content_vlue = document.getElementById("print_content").innerHTML; 
  
  var docprint=window.open("","",disp_setting); 
   docprint.document.open(); 
   docprint.document.write('<html><head><title>Get Your Money</title>'); 
   docprint.document.write('<LINK href="Stylesheet/Styles.css" rel="stylesheet">')
   docprint.document.write('</head><body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" onLoad="self.print()">');   
   docprint.document.write('<table cellpadding="0" align="left"  class="clsText" cellspacing="0" border="0" width="100%"><tr><td>');     
       
   docprint.document.write(content_vlue);    
   docprint.document.write('</td></tr></table>');      
   docprint.document.write('</body></html>'); 
   docprint.document.close(); 
   docprint.focus(); 
}
function IncludeFile(url,loc)			
{
	if ('undefined' == typeof(url)) 
		return false;
			
	var p,rnd;
	if (document.all)
	{
		// For IE, create an ActiveX Object instance 
		p = new ActiveXObject("Microsoft.XMLHTTP");
	} 
	else 
	{
		// For mozilla, create an instance of XMLHttpRequest.
		p = new XMLHttpRequest();
	}
 
	// Prevent browsers from caching the included page by appending a random  number
	rnd = Math.random().toString().substring(2);
	url = url.indexOf('?')>-1 ? url+'&rnd='+rnd : url+'?rnd='+rnd;
	// Open the url and write out the response
	p.open("GET",url,false);
	p.send(null);						
	document.getElementById(loc).innerHTML = p.responseText;				
}
