

/*
Toggle Layer Visibility
*/

function toggleVisibility(id, NNtype, IEtype, WC3type) {
    if (document.getElementById) {
        eval("document.getElementById(id).style.visibility = \"" + WC3type + "\"");
    } else {
        if (document.layers) {
            document.layers[id].visibility = NNtype;
        } else {
            if (document.all) {
                eval("document.all." + id + ".style.visibility = \"" + IEtype + "\"");
            }
        }
    }
}



/*
	display TAKE ACTION sub menu
	
*/

function generateTakeAction() {
	
	var takeAction = '';
	
	takeAction +='<DIV ID="takeAction" BGCOLOR="#F8F9FD" onMouseOver="toggleVisibility(\'takeAction\',\'show\',\'visible\',\'visible\')" onMouseOut="toggleVisibility(\'takeAction\',\'hidden\',\'hidden\',\'hidden\')">';
	takeAction +='<A HREF="http://www.rbcds.com/find-an-investment-advisor.html" TARGET="_blank">Enrol Now</A>';
	takeAction +='<BR/>';
	takeAction +='<SPAN CLASS="enrolTxt">Contact an Investment<BR />Advisor in your area.';
	takeAction +='<BR /><BR/>';
	takeAction +='<A HREF="https://www1.royalbank.com/english/ris/pcd/sgne.html" TARGET="_blank">Sign In</A>';
	takeAction +='<BR />';
	takeAction +='Already enrolled?<BR/>Sign in to DS Online</SPAN>';
	takeAction +='</DIV>';

	
	document.write(takeAction);
	
	}
	
	
function generateHomePageLink() {
	var hpl = '';
	hpl +='<div id="homePageLink">';
	hpl +='<a href="../index.html">';
	hpl +='<img src="../images/home_link.gif" width="116" height="57" border="0" />';
	hpl +='</a>';
	hpl +='</div>';
	
	document.write(hpl);
}


function closeSite(path) {
	var path;
	var closeWin = '';
	var exitSrc = '';
	
	if (path == 'root') {
		exitSrc = 'images/';
	} else {
		exitSrc = '../images/';
	}
	
	closeWin +='<div id="destroySite">';
	closeWin +='<a href="javascript:window.close();">';
	closeWin +='<img src="'+exitSrc+'exit_tour.gif" width="66" height="12" border="0">';
	closeWin +='</a>';
	closeWin +='</div>';
	
	document.write(closeWin);
}