function tutorial(myTutorial, myName)
{
	theAnim = "db_tutorial_popup.aspx?tutorial=" + escape(myTutorial) + "&" + "name=" + escape(myName);
	x = 0;// x position relative to parent
y = 0;// y position relative to parent
h=window.screenTop;
w=window.screenLeft;
ypos = h+x;
xpos = w+y;
	popupWin = window.open(theAnim, "Animations", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=950,height=730,'left='+xpos+',top='+ypos");
	popupWin.focus();
}

function helpPop(tutName) {
    theAnim = "db_default_" + escape(tutName) + ".aspx";
    x = 0; // x position relative to parent
    y = 0; // y position relative to parent
    h = window.screenTop;
    w = window.screenLeft;
    ypos = h + x;
    xpos = w + y;
    popupWin = window.open(theAnim, "Animations", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=670,height=550,'left='+xpos+',top='+ypos");
    popupWin.focus();
}