function go(strPage, blnFrame, blnRowSelected) {
	var strUrl, strOption;
	var blnContinue;

	blnContinue = false;

	if (blnRowSelected == true) {		 
	 
	 	if (rowid.constructor == Array) {
			for (var i=0; i<rowid.length; i++) {
				if (rowid[i].checked) {
					blnContinue = true;
					strOption = "id=" + rowid[i].value;
					//result += checkbox[i].value + "\n" ;
				}
			}
		}
		else {		
			blnContinue = true;
			strOption = "id=" + rowid.value;			
		}

		if (blnContinue == false) {
			alert("Vous devez sélectionner une ligne") ;
		}
	}
	else {
		strOption = "";
		blnContinue = true;		
	}

	if (blnContinue == true) {
		strUrl = strPage;
		if (strOption != "") {
			strUrl = strUrl + "?" + strOption;
		}
		

		if (blnFrame == true) {
			parent.frames['framepage'].location.replace(strUrl);
		}
		else {
			top.location.href = strUrl;
		}
	}
	
}

function ExecUrl(strUrl){
	if (strUrl.length != 0){
		window.location.href = strUrl;
	}
}
	