any ideas why this does not load? thanks for any assistance
<html>
<head>
<script type="text/javascript" src="coomang.js"></script>
<title>JS COOKIE MANAGER</title>
<link rel="stylesheet" type="text/css" href="coomang.css"> </link>
<script type="text/javascript" >
function loadcontent()
{
var x= "<div class="general">";
x += " <div style="width: 150px; position: fixed;">CREATE
COOKIE:</div>";
x += " <div style="position: relative; left:170px">";
x += " Name:<input id="cname" type="text"size="10"> Value: <input
cvalue"type="text"size="10">";
x += " <input type="button"value="SET"onclick="create()"/>";
x += " <input type="button"value="CLEAR" onclick="clear1()" />";
x += " </div>";
x += "</div>";
x += "<div class="general">";
x += " <div style="width: 150px; position: fixed;">GET
COOKIE:</div>";
x += " <div style="position: relative; left:170px">";
x += " Name:<input id="cname2" type="text"size="10">";
x += " Value: <input id="cvalue2" type="text"size="30">";
x += " <input type="button"value="GET" onclick="findcookie()">";
x += " <input type="button"value="CLEAR"onclick="clear2()" />";
x += " </div>";
x += "</div>";
x += "<div class="general">";
x += " <div style="width: 150px; position: fixed;">DELETE
COOKIE:</div>";
x += " <div style="position: relative; left:170px">";
x += " Name:<input id="cname3" type="text"size="10">";
x += " <input type="button"value="DEL" onclick="delete1()"/>";
x += " <input type="button"value="CLEAR" onclick="clear3()" />";
x += " </div>";
x += "</div>";
x += "<div class="general">";
x += "COOKIE RAW:<input id="raw" type="text" size="50">";
x += "<input type= "button" value="RAW" onClick="raw()"/>";
x += "<input type="button"value="CLEAR" onclick="clear4()" />";
x += "</div> ";
document.getElementById("contents").innerHTML=x;
}
</script>
</head>
<body onLoad= "loadcontent()">
<div id="contents">hiss!</div>
</body>
</html>