function markerasokord(url, str) {	var n;	var nm;	nm = 0;//	alert(str);//	alert(url);	/*//	if (opener.closed) {//		alert("Unable to find as the main window has been closed."); //		self.close(); //		return false;//	} else if (here != opener.location.href) {//		here = opener.location.href; //		nm = 0;//	} 	if (str == "") {//		alert("Please enter the text you want to locate."); 		return false;	} 	var tx, i, found; 	if (isLayers) {		if (!opener.find(str)) 			while(opener.find(str,false,true)) 			n++; 		else 			n++;		if (n == 0) 			alert(str + " not found on this page.");  	} else if (isAll) {		 	var rng = document.body.createTextRange( );	if (rng!=null) {    		alert(rng.htmlText);	}*/	var tx, i, found;	var inh = document.getElementById("innehall")	tx = inh.createTextRange( ); //	if (tx!=null) {//    		alert(tx.htmlText);//	}			for (i = 0; i <= nm && (found = tx.findText(str)) != false; i++) {//			alert(found)			tx.moveStart("character", 1); 			tx.moveEnd("textedit");	} 	if (found) {//		alert('h\u00E4r ox\u00E5')		tx.moveStart("character", -1); 		tx.findText(str);		tx.select(); 		tx.scrollIntoView(); 		nm++;	}/*else {		if (nm > 0) {			nm = 0; findInPage(str);			}		else			return false; 			//alert(str + " not found on this page.");		}	} else if (isID) {		var ag = navigator.userAgent.toLowerCase();		var isG = (ag.indexOf('gecko') != -1); 		var isR=0;		if (isG) {			t = ag.split("rv:"); 			isR = parseFloat(t[1]);		}		if (isR >=1) {			if (!opener.find(str,false,false,true,false,true,false)) 				alert(str + " not found on this page.");document.search.sub.focus();		} else			alert("Find function not supported on this browser");		} 		return false;		*/}