パスワードの入力画面を作ったのですがうまく表示されません。
なにか間違えているところがあれば教えてください。
<html>
<body>
<script type="text/javascript">
function handan(shadanki){
if(shadanki==xxx){
window.open('https://xxx');
} else if (shadanki==xxx){
window.open('https:/xxx');
} else {
document.getElementById("kekka").innerHTML="パスワードが違います。";
}
}
</script>
<input type="text" id="num">
<input type="button" value="実行" onclick="handan(num.value)">
<div id="kekka">ここに結果を表示します</div>
<img src="https://up.gc-img.net/post_img_web/2015/08/suPLuJhlsmp8398" width="160px" height="106px">
</body>
</html>