
dayName = new Array ("Niedziela", "Poniedziałek", "Wtorek", "Środa", "Czwartek", "Piątek", "Sobota")
monName = new Array ("Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień")

now = new Date 


function changeselectionLength(){


month=(document.pageDate.monthPullDown.options[document.pageDate.monthPullDown.selectedIndex].value);

if (month==02) {

document.pageDate.dayPullDown.length=29;

}
else if (month==04) {

document.pageDate.dayPullDown.length=30;
document.pageDate.dayPullDown.options[29].text=("30");
document.pageDate.dayPullDown.options[29].value=30;

}
else if (month==06) {

document.pageDate.dayPullDown.length=30;
document.pageDate.dayPullDown.options[29].text=("30");
document.pageDate.dayPullDown.options[29].value=30;

}
else if (month==09) {

document.pageDate.dayPullDown.length=30;
document.pageDate.dayPullDown.options[29].text=("30");
document.pageDate.dayPullDown.options[29].value=30;

}
else if (month==11) {

document.pageDate.dayPullDown.length=30;
document.pageDate.dayPullDown.options[29].text=("30");
document.pageDate.dayPullDown.options[29].value=30;

}
else {

document.pageDate.dayPullDown.length=31;
document.pageDate.dayPullDown.options[29].text=("30");
document.pageDate.dayPullDown.options[29].value=30;
document.pageDate.dayPullDown.options[30].text=("31");
document.pageDate.dayPullDown.options[30].value=31;

}


}


function navigateNewDate() {
month = (document.pageDate.monthPullDown.options[document.pageDate.monthPullDown.selectedIndex].value);
day = (document.pageDate.dayPullDown.options[document.pageDate.dayPullDown.selectedIndex].value);
window.location=("v" + month + day + ".html");
}

 
