function UpdateSnippet() {
if (document.onyoursite.icon.value == 'none'){
	if (document.onyoursite.text.value == 'none'){
		alert('Please pick either text or image')
	}
}
var TheSnippet,TheCode,TheImgSize
TheSnippet = '<script src="http://www.metaweather.com/Syndicate/?format=js&amp;location=' + document.onyoursite.location.value + '&amp;icon=' + document.onyoursite.icon.value + '&amp;text=' + document.onyoursite.text.value + '" type="text/javascript" />'
TheCode = '<a href="[thelink]" id="metaweather">'
if (document.onyoursite.icon.value != 'none') {
	if (document.onyoursite.icon.value == 'lrg') {TheImgSize = 64} else {TheImgSize = 32}
	TheCode = TheCode + '<img src="[imgsrc]" border="0" alt="[imgalt]" height="'+TheImgSize+'" width="'+TheImgSize+'" />'
}
if (document.onyoursite.text.value != 'none') {TheCode = TheCode + '<p>[weathertext]</p>'}
TheCode = TheCode + '</a>'
document.onyoursitesnippet.thesnippet.value = TheSnippet
document.onyoursitecode.thecode.value = TheCode
}