<head>
<style type="text/css">
#object1{
position:absolute;
visibility:show;
top:100px;
left:100px;
}
</style>
<script src="finddom.js"></script>
<script>
function moveobject (objectid) {
domstyle=finddom(objectid,1);
domstyle.left=520;
domstyle.top=500;
}
</script>
<!---->
</head>
<body onmouseover="moveobject(object1)">
<div id="object1" >
<img src="em000.gif" width="200" height="298" border="3">
</div>
</body>
</html>
выдает ошибку - Предполагается наличие объекта
при вызове finddom(objectid,1);
без вызова функции, #object1 управляет div ( меняя domstyle.left=520;
domstyle.top=500
почему при вызове теряется #object1
function findDOM(objectID,withStyle) {
if (withStyle == 1) {
if (isID) { return (document.getElementById(objectID).style) ; }
else {
if (isAll) { return (document.all[objectID].style); }
else {
if (isLayers) { return (document.layers[objectID]); }
};}
}
else {
if (isID) { return (document.getElementById(objectID)) ; }
else {
if (isAll) { return (document.all[objectID]); }
else {
if (isLayers) { return (document.layers[objectID]); }
};}
}
}
спасибо...