    function ShowWindow(DisplayThis, NameThis)
    {
        msg=window.open(DisplayThis, NameThis, "toolbar=no,width=640,height=400,directories=no,scrollbars=yes,status=no,resize=no,menu=no");
    }

    function ShowWindow(DisplayThis)
    {
        msg=window.open(DisplayThis, "_NEW", "toolbar=no,width=640,height=400,directories=no,scrollbars=yes,status=no,resize=no,menu=no");
    }

    function ShowWindow(DisplayThis, NameThis, Height, Width)
    {
        msg=window.open(DisplayThis, NameThis, "toolbar=no,width=" + Width + ",height=" + Height + ",directories=no,scrollbars=yes,status=no,resize=no,menu=no");
    }

    function ShowAdmissionWindow(Type)
    {
        msg=window.open("", "Admission", "toolbar=no,width=400,height=300,directories=no,scrollbars=yes,status=no,resize=no,menu=no");
        if (Type == "E1")
        {
            msg.document.writeln("<HTML><HEAD><TITLE>Runaway Stage Productions Musical Theatre Admission Prices</TITLE></HEAD><BODY BGCOLOR=WHITE TEXT=BLACK>");
            msg.document.writeln("<TABLE BORDER=0>");
            msg.document.writeln("<TR><TD>General Admission</TD>                    <TD>$16.00</TD></TR>");
            msg.document.writeln("<TR><TD>Student, SARTA or Government Discount</TD><TD>$14.00</TD></TR>");
            msg.document.writeln("<TR><TD>Senior</TD>                               <TD>$14.00</TD></TR>");
            msg.document.writeln("<TR><TD>Child</TD>                                <TD>$10.00</TD></TR>");
            msg.document.writeln("<TR><TD>Group Rates (12 or more)</TD>             <TD>$10.00</TD></TR>");
            msg.document.writeln("</TABLE>");
            msg.document.writeln("</BODY></HTML>");
            return;
        }
        if (Type == "E")
        {
            msg.document.writeln("<HTML><HEAD><TITLE>Runaway Stage Productions Musical Theatre Admission Prices</TITLE></HEAD><BODY BGCOLOR=WHITE TEXT=BLACK>");
            msg.document.writeln("<TABLE BORDER=0>");
            msg.document.writeln("<TR><TD>General Admission</TD>                    <TD>$16.00</TD></TR>");
            msg.document.writeln("<TR><TD>Student, SARTA or Government Discount</TD><TD>$14.00</TD></TR>");
            msg.document.writeln("<TR><TD>Senior</TD>                               <TD>$14.00</TD></TR>");
            msg.document.writeln("<TR><TD>Child</TD>                                <TD>$10.00</TD></TR>");
            msg.document.writeln("<TR><TD>Group Rates (12 or more)</TD>             <TD>$10.00</TD></TR>");
            msg.document.writeln("</TABLE>");
            msg.document.writeln("</BODY></HTML>");
            return;
        }
        if (Type == "C")
        {
            msg.document.writeln("<HTML><HEAD><TITLE>Runaway Stage Productions Youth Musical Theatre Workshop Admission Prices</TITLE></HEAD><BODY BGCOLOR=WHITE TEXT=BLACK>");
            msg.document.writeln("<TABLE BORDER=0>");
            msg.document.writeln("<TR><TD>General Admission</TD>                    <TD>$5.00</TD></TR>");
            msg.document.writeln("</TABLE>");
            msg.document.writeln("</BODY></HTML>");
            return;
        }

        if (Type == "S")
        {
            msg.document.writeln("<HTML><HEAD><TITLE>Runaway Stage Productions Storybook Theatre Admission Prices</TITLE></HEAD><BODY BGCOLOR=WHITE TEXT=BLACK>");
            msg.document.writeln("<TABLE BORDER=0>");
            msg.document.writeln("<TR><TD>General Admission</TD>                    <TD>$5.00</TD></TR>");
            msg.document.writeln("</TABLE>");
            msg.document.writeln("</BODY></HTML>");
            return;
        }


    }
    function ShowDirectionsWindow()
    {
	msg=window.open("/directions.html", "Directions", "toolbar=no,width=640,height=400,directories=no,scrollbars=yes,status=no,resize=no,menu=no");
    }
