I continue to get, function not defined when calling the function build_blog() through the function start()?
<html>
<head>
<style>
</style>
<script type="text/javascript">
var SEO;
var conversion;
var SMO;
function Start()
{
document.write("Blog Name: <input type='text' id='name'><br> Blog System: <input type='radio' name='system' id='system' value='blogger'> Blogger<input name='system' type='radio' id='system' value='Wordpress'>Wordpress<br><input type='button' value='Build My Blog' onClick='Build_Blog();'>");
}
function Build_Blog()
{
alert("d");
}
</script>
</head>
<body>
<p>Welcome Website Creator! Website Creator gives you a realistic feel of what it is like to run a website or blog. Advertise, Rank, and Blog with Website Creator. Click Start to begin!</p>
<input type="button" value="START" onclick="Start();">
</html>