Calendar

[insert_php]

if (get_query_var(“month”)) {
$month = get_query_var(“month”);
}
else{
$month=10;
}

if (get_query_var(“year”)) {
$year = get_query_var(“year”);
}
else{
$year=2013;
}
include(‘production_calendar.php’);//.’?month=’.$month.’&year=’.$year);
[/insert_php]