function popWin(sUrl,iWidth,iHeight,sWindow,iScrollbar) {

	if (iScrollbar == 1) {
		iScroll = 1
	} else {
		iScroll = 0
	}

    var iLeftPos = Math.round((screen.width-iWidth)/2);
    var iTopPos = Math.round((screen.height-iHeight)/2);
    popwin = window.open(sUrl,sWindow,'width='+iWidth+', height='+iHeight+',top='+iTopPos+',left='+iLeftPos+',scrollbars='+iScroll);
}

function sendfile(iID) {
	popWin('/send_file.asp?intID='+iID,50,50,'file_download')
}

function cI(iID,sImage)
{
	document.getElementById(iID).src = sImage;
}