<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<script type="text/javascript" language="javascript" >
<!--
window.onload=function(){
document.getElementById("box").style.backgroundImage="url(1.jpg)";
var box=document.getElementById("box");
box.onclick=function(){
//alert(box.style.backgroundImage);
//alert(typeof(box.style.backgroundImage));
if(box.style.backgroundImage.indexOf("1.jpg")!=-1)
{box.style.backgroundImage="url(2.jpg)";}else {box.style.backgroundImage="url(1.jpg)"}
}
}
-->
</script>
<style type="text/css">
<!--
#box{width:800px;height:600px;}
-->
</style>
</head
<body>
<div id="box">
</div>
</body>
</html>