<!--
	function selectall() {		
		if (document.listform.markall.checked) {					
			if (document.listform.mark.length) {
				for (i=0;i<document.listform.mark.length;i++)
					document.listform.mark[i].checked = true;
			} else {
				document.listform.mark.checked = true;
			}
		} else {
			if (document.listform.mark.length) {
				for (i=0;i<document.listform.mark.length;i++)
					document.listform.mark[i].checked = false;
			} else {
				document.listform.mark.checked = false;
			}
		}
	}
	function markbids() {
		count = 0
		if (document.listform.mark.length) {
			for (i=0;i<document.listform.mark.length;i++)
				if (document.listform.mark[i].checked) {
					count = count + 1;
					break;					
				}
		} else {
			if (document.listform.mark.checked)
					count = count + 1;
		}
			
		if (count > 0) {		
			//winopts = "width=500,height=500,scrollbars=yes,resizable=yes";			
   		//popWindow = window.open("",'winmark', winopts);		 
			//document.listform.target="winmark";
			document.listform.action="/common/addmymark.cfm"
			document.listform.submit();
		} else {
			alert("You should select at least one to mark.");
		}
	}	

	function doOptimize() {
		document.pt_p.foptimize.value='0';
		document.pt_p.currentpage.value='1';		
		document.pt_p.submit();
	}		
//-->
