var calendarWin;

function pickDate(destField, selectedDate) {

	var url = '/calendar.asp?Dest=' + destField + '&Date=';

	url += eval('document.' + destField + '.value');
	
	if(calendarWin && !calendarWin.closed){
		calendarWin.document.location.href = url;
		calendarWin.focus()
	}
	else{
		calendarWin = window.open(url, 'calendarWin', 'toolbars=no,status=no,scroll=no,menubar=no,resizeable=no,width=300,height=300,top=0,left=0')
	}

}

var imageWin;

function bigImage(sPath, sAlt, iWidth, iHeight){
	sURL = '/pages/viewimage.asp?Path=' + sPath + '&alt=' + sAlt
	var popWin = imageWin;
	
	if(popWin && !popWin.closed){
		popWin.close();
	}
	
	iWidth = iWidth + 20
	iHeight = iHeight + 20

	imageWin = window.open(sURL, 'imageWin','status=yes,scrollbars=no,resizable=yes,left=0,top=0,width=' + iWidth +',height=' + iHeight);

}