Hrej si, tu máš kohouta>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1250">
<title></title>
</head>
<script>
function vyvolejClick() {
var target = document;//<--(insert your target here);
if(document.createEvent){
var clickEvent = document.createEvent("MouseEvents");
clickEvent.initMouseEvent("click", true, true, window, 200, 200, 200, 200, 200, false, false, false, 0, null);
target.dispatchEvent(clickEvent);
}
else{
target.fireEvent("onclick");
}
}
</script>
<body onclick="document.body.style.background='#CC9900'">
<input type='button' value='fire event' onclick='vyvolejClick()'>
</body>
</html>