function sayit(){	if (document.getSelection){		var selectedString = document.getSelection();	}	else if(document.all) {		var selectedString = document.selection.createRange().text;	}	else if(window.getSelection){		var selectedString = window.getSelection();	}	document.rs_form.rstext.value = selectedString;	if (window.location.href) {	document.rs_form.url.value = window.location.href;	}	else if(document.location.href) {		document.rs_form.url.value = document.location.href;	}}function copyselected(){	setTimeout("sayit()",50);	return true;}