function tFCh(yb,mb,db,ye,me,de){
	if (Date.UTC(yb,mb,db)>Date.UTC(ye,me,de)){ return false}
	return true;
}

function getSV (ds) {
  var z = 0;
  for (var i = 0; i < ds.options.length; i++) if (ds.options[i].selected) z = ds.options[i].value;
  return z;
}

function showPopupImgWindow(im,w,h,alt){
	imgwindow = window.open('',"_blank","resizable=no,menubar=no,status=no,top=30,left=100;scrollbars=no,width="+w+",height="+h);
	imgwindow.document.open("text/html");
	imgwindow.document.writeln('<html><head><title>'+alt+'<\/title><\/head>');
	imgwindow.document.writeln('<body bgcolor=#ffffff marginwidth="0" marginheight="0" topmargin="0" leftmargin="0" onBlur="self.close();">');
	imgwindow.document.writeln('<div align="left"><a href="javascript:self:close();"><img src="'+im+'" width="'+w+'" height="'+h+'" alt="'+alt+'" border="0"></a></div><\/body><\/html>');
	imgwindow.focus();
}

function popup(link,w,h) {
	window.open(link,"_blank","width="+w+",height="+h+",scrollbars=1,status=0,statusbar=0,resizable=0,resize=no");
}