//************************************************************
// get this page name
//************************************************************

var parts = new Array;
var thisSite = new Array;
var test;
//************************************************************
//check the current page
test = location.href.substring(location.href.lastIndexOf("/"));
parts = test.split('?');
thisSite.thisPage = parts[0].replace("/","");

var pageName = thisSite.thisPage;
//************************************************************
function writePE () {
	if (pageName.match("pmdd.aspx")||pageName.match("pmdd_glossary.aspx")) {
		document.write("ZTU00002F");
	} else if (pageName.match("pmdd_tools.aspx")||pageName.match("pmdd_symptoms.aspx")||pageName.match("pmdd_symptom_tracker.aspx")) {
		document.write("ZTU00002F");
	} else if (pageName.match("pmdd_doctor_discussion_guide.aspx")||pageName.match("pmdd_self_quiz.aspx")) {
		document.write("ZTU00002F");
	} else if (pageName.match("mang_online_resources.aspx")||pageName.match("common_questions.aspx")) {
		document.write("ZTU00002F");
	
	} else {
		document.write("ZTU00002D");
	}
}


