function openwindow(src) {
	mywin = window.open(src,'GalleryWindow', 'width=710, height=500, scrollbars, location=no, menubar=no, resizable=yes, status=no');
	mywin.focus();
}
function InitDays() {
		novel1=5;
		novel2=3;
	X = new Date() ; X.setDate (X.getDate()+novel1) ;
	ev = X.getYear(); 
    if (!document.all) ev += 1900 ;
	ho = X.getMonth();
	nap = X.getDate();
	document.searchform.ay.value=ev;
	document.searchform.am.selectedIndex=ho;
	document.searchform.ad.value=nap;
	X.setDate (X.getDate()+novel2) ;
	ev = X.getYear();
    if (!document.all) ev += 1900 ;
	ho = X.getMonth();
	nap = X.getDate();
	document.searchform.dy.value=ev;
	document.searchform.dm.selectedIndex=ho;
	document.searchform.dd.value=nap;
}
