var oldTitle = document.title;
var newTitle = "GM Performance Parts | E-ROD LS3 | The Future of Hot Rod Performance";

function changeTitle(title){
	document.title  = title;
}

function openErodMasthead(){	
	changeTitle(newTitle);
	try{
		aloneTracking('ErodLearnAbout');
	}
	catch(e) {	}	
	showReportHome(path);
}

function closeErodMasthead(){
	changeTitle(oldTitle);
	aloneTracking('ErodHeaderLinksReturnGMPP');
	try{
		top.closeReport();
		/*alert(top.document.location.pathname + "  " + document.location.pathname );		
		if (document.location.pathname == '/landingErod/'){
			document.location.href = "/home.jsp";
		}*/
	}
	catch(e) {
		document.location.href = "/home.jsp";
	}	
}	