// JavaScript Document
function mOpenWindow(type,winName,features) { //v2.0
  if(type == "1"){
  	var i,j,check,tURL,theURL;
  	tURL = "http://ex.qianjia.com/qianjiavote/vProcess.aspx?vote_id=81&proc=vote";
	theURL = tURL;
	j=0;
	//"../vProcess.aspx?vote_id=proc=vote";
	mcheck = eval("document.form1.checkbox");
	if(mcheck==null){
		return;
	}else{
		if(mcheck.length){
			for(i=0;i<=mcheck.length-1;i++){
				if(mcheck[i].checked==false){}
				else{
					theURL = theURL + "&c" + j + "=" + mcheck[i].value;
					j++;
				}
				
			}
			if(theURL==tURL){
				alert("Please select one option");
				return;
			}
			else{
				theURL = theURL + "&count=" + j;
			}
		}
	}
  }
  
  if(type == "2"){
  	theURL = "http://ex.qianjia.com/qianjiavote/vResult.aspx?vote_id=81";
  }
   	window.open(theURL,winName,features);
}

