function TitleOfThePage()
{
var varTitleOfThePage ;
	if(navigator.appName=="Netscape")
	{
	varTitleOfThePage = document.getElementById(contentPlaceholder+'__migidContentPlaceholderHeadName__ControlWrapper_RichHtmlField').innerHTML;
	}
	else
	{
	varTitleOfThePage = document.getElementById(contentPlaceholder+'__migidContentPlaceholderHeadName__ControlWrapper_RichHtmlField').innerText;
	}

AddToYourPage(varTitleOfThePage);
}

function PrintContent()
{
		 var prtContent = document.getElementById(content+'__migidContentPlaceholderContentArea__ControlWrapper_RichHtmlField'); 
                
         var WinPrint = window.open('?printable=true','' ,'left=10,top=20,width=707,height=600,toolbar=0,scrollbars=1,status=0,resizable=no'); 
                             
         WinPrint.document.write('<html><style>#dgView td{ text-indent:2px;border:solid 1px #b48459;} #dgView th{text-align:left;border:solid 1px #b48459;text-indent:3px;} .style10 { font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; color: #b5985a; line-height:30px;} .style11 {color: #b5985a ; font-family: Arial, Helvetica, sans-serif; font-size: 11px;} .dgViewWidth1{width: 80px;} .dgViewWidth{width: 273px;} .dgViewWidth3{width: 115px;} .dgViewWidth4{width: 140px;} .dgViewWidth0{width: 16px;} .dgViewWidth5{width: 20px;} .dgViewMain{width:640px;}</style><img style="position:absolute;top:0px;left:0px;" src="/sites/Etihad/PublishingImages/Header_LogoStrap_Guest_690.jpg" alt="Etihad Airways"/>' ); 

         var varTitle = document.getElementById(contentPlaceholder+'__migidContentPlaceholderHeadName__ControlWrapper_RichHtmlField');
         WinPrint.document.write('<table cellpadding="0" cellspacing="0" style="position:absolute;top:70px"><tr><td  style="FONT-SIZE: 23px;	PADDING-BOTTOM: 3px;	WIDTH: 690px;	COLOR: black;	BORDER-BOTTOM: #b49575 1px solid;	FONT-FAMILY: Optima LT, Arial">' + varTitle.innerHTML + '</td></tr>');
         WinPrint.document.write('<tr><td style="height:10px">'); 
 	     WinPrint.document.write('<tr><td style="PADDING-RIGHT: 0px;	PADDING-LEFT: 0px;	FONT-SIZE: 11px;	PADDING-BOTTOM: 0px;	MARGIN: 0px;	COLOR: black;	PADDING-TOP: 0px;	FONT-FAMILY: Arial" width = "650px;" ><link rel="stylesheet" type="text/css" href="/_layouts/Etihad/css/EtihadPL.css">' + prtContent.innerHTML + '</td></tr><tr height="10px" ><td></td></tr>'); 
         WinPrint.document.write('</td></tr><tr><td  style="FONT-SIZE: 14px;PADDING-TOP: 10px;WIDTH: 670px;	COLOR: black;	BORDER-TOP: #b49575 1px solid;position:relative;">&nbsp;<label /><img src="/sites/Etihad/PublishingImages/Images/New Requirements/Icon-Print.jpg" style="cursor:pointer;" onclick="window.print();" align="absbottom"/>&nbsp;<label ID="lblPrintpage1"  onclick="window.print();" style="cursor:pointer;font-size:11px;color:#808285;font-family:Arial;" >'+lblprinttext+'</label></td></tr><tr><td ><td></tr></table></html>' ); 
         WinPrint.document.close();
         WinPrint.focus();
         WinPrint.print();
         return false; 
}

function Email()
		{
			var browser = navigator.appName;
			if (browser == "Microsoft Internet Explorer")
			{
			window.open('/sites/Etihad/_layouts/Etihad/MailThisPage.aspx?EmailThisPage='+EmailThisPage+'&IsGRP=true','','width=450,height=410,toolbar=no,scrollbars=no,status=no,resizable=no');
			}
			if (browser == "Netscape" || browser == "Firefox")
			{
			window.open('/sites/Etihad/_layouts/Etihad/MailThisPage.aspx?EmailThisPage='+EmailThisPage+'&IsGRP=true','','width=450,height=410,location=no,toolbar=no,scrollbars=no,menubar=no,status=no,resizable=no,dialog=yes,minimizable=no');
			}
		}
		
 function ChangeLink()
        {
            var links = document.getElementsByTagName('a');
            for(i=0;i<links.length;i++)
            {
                if((links[i].href).match("guestrecognition"))
                {
                // do nothing    because GRP site will remain in English only
                }
                else
                { 
                    links[i].href=(links[i].href).replace("global/en",countrySession +"/"+ cultureSession);
                }
            }
        }
