<html>
<head>
<style type="text/css">
#oblast{ width : 300px; height : 300px ; background : #ccc ; }
</style>
<script type="text/javascript">
window.onload = function() {
var point=document.createElement('div');
point.style.border='solid 1px #888';
var obl= document.getElementById('oblast');
/*
coorX=point.style.bottom;
coorY=point.style.left;
*/
obl.appendChild(point);
}
</script>
<title></title>
</head>
<body>
<div id="oblast"></div>
</body>
</html>