function RSScopy(url) {
	var IE = (window.clipboardData)?true:false;
	if(IE) {
		window.clipboardData.setData("Text", url);
		alert("Copy the RSS address");
	}
	else {
		prompt("RSS address. Press Ctrl + C to copy it to your clipboard.", url);
	}
}
