function grabCode()
{
	if (document.addButton.feedurl.value=='') {
		alert("Please enter the URL of your RSS feed.");
		document.addButton.feedurl.focus();
		return false;
	}
	for (i=0;i<document.addButton.buttonPic.length;i++){
		if (document.addButton.buttonPic[i].checked){
			var btnImage  = document.addButton.buttonPic[i].value;
			var imgWidth  = document.addButton.buttonPic[i].nextSibling.getAttribute("width");
			var imgHeight = document.addButton.buttonPic[i].nextSibling.getAttribute("height");
		}
	}
	var codeStart = '<a href="http://www.seamler.com/addFeed.php?type=rss&url='+encodeURIComponent(document.addButton.feedurl.value)+'">';
	var imageCode = '<img src="http://www.seamler.com/images/'+btnImage+'.gif" width="'+imgWidth+'" height="'+imgHeight+'" border="0" align="middle" alt="Add to My Seamler!" title="أضف إلى سيملر!" />';
	var codeEnd = '</a>';
	document.addButton.seamlercode.value = codeStart+imageCode+codeEnd;
	document.addButton.seamlercode.select();
	document.addButton.seamlercode.focus();
	return false;
}