I've been playing around w/ this code for a couple hours...whenever I try to run it on the IE explorer, it shows nothing. What is wrong?
<html>
<title>Javascript for Dummies</title>
<head>
<script language="javascript">
function showme(mvs,unix) {
if (mvs == "OS/390"
document.writeln("MVS is " + mvs)
}
else if (mvs == "OS/380"
document.writeln("Unix is " + unix)
}}
function Shop(mvs,unix,web) {
this.mvs = mvs
this.unix = unix
this.web = web
this.reporting = showme(mvs,unix)
}
</script>
</head>
<body>
<br>
<script language="javascript>
mark = new Shop("OS/390", "Linux", "Navigator"
mark.reporting
susan = new Shop("ZOS", "RedHat", "IE"
susan.reporting
</script>
</body>
</html>