function ShowEmail(user, domain, anchor) {
	var OutText = '';
	OutText += '<a href="mailto:' + user + '@' + domain + '">';
	if (anchor != '') OutText += anchor;
	else OutText += user + '@' + domain;
	OutText  += '</a>';
	document.write(OutText);
}

function externalLinks() { 

	if (!document.getElementsByTagName) return; 

	var anchors = document.getElementsByTagName("a"); 
	for (var i=0; i<anchors.length; i++) { 
		var anchor = anchors[i]; 
		var relvalue = anchor.getAttribute("rel");

		if (anchor.getAttribute("href")) {
			var external = /external/;
			var relvalue = anchor.getAttribute("rel");
			if (external.test(relvalue)) { anchor.target = "_blank"; }
		} 
	}
} 
window.onload = externalLinks;

function openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

function openMoviePopup(theURL,winName,windowWidth,windowHeight) { 
    //window.open(theURL,winName,'status=no,scrollbars=no,resizable=yes,width=580,height=570');
    var centerWidth = (window.screen.width - windowWidth) / 2;
    var centerHeight = (window.screen.height - windowHeight) / 2;

    newWindow = window.open(theURL, winName, 'status=no,scrollbars=no,resizable=yes,width=' + windowWidth + ',height=' + windowHeight + ',left=' + centerWidth + ',top=' + centerHeight);
    newWindow.focus();
    return newWindow.name;
}

function VirtualnetChat() 
{
    if(window.location.hostname != 'apollo')
        //Online
        //document.write('<iframe src="http://' + window.location.hostname + '/chat.aspx" id="chatframe" height="159" width="170" frameborder="0" scrolling="no"></iframe>');
        //testing
        //document.write('<iframe src="chat_OFF.aspx" id="chatframe" height="159" width="170" frameborder="0" scrolling="no"></iframe>');
        document.write('<iframe src="chat.aspx" id="chatframe" height="170" width="199" frameborder="0" scrolling="no"></iframe>');
    else
        //for Testing
        document.write('<iframe src="http://' + window.location.hostname + '/SunLifeStyles/chat.aspx" id="chatframe" height="170" width="199" frameborder="0" scrolling="no"></iframe>');
}





