<html>
<head>
<script type="text/javascript">
function $(id)
{
return document.getElementById(id);
}
function showimg(obj)
{
var img = $("compman");
var imgurl = "file:///"+obj.value.replace(////g,"/");
img.src = imgurl;
}
</script>
</head>
<body>
<img id="compman" src="compman.jpg" alt="Computerman" width="200" height="200" align="right" />
<input type="file" onchange="showimg(this)">
</body>
</html>
<head>
<script type="text/javascript">
function $(id)
{
return document.getElementById(id);
}
function showimg(obj)
{
var img = $("compman");
var imgurl = "file:///"+obj.value.replace(////g,"/");
img.src = imgurl;
}
</script>
</head>
<body>
<img id="compman" src="compman.jpg" alt="Computerman" width="200" height="200" align="right" />
<input type="file" onchange="showimg(this)">
</body>
</html>