Forum Moderators: open
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!-- doctype on one line -->
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Untitled</title>
<script type="text/javascript">
window.onload=function() {
if (document.getElementById('pictures')) {
var content = '<img src="images/roma_1.jpg" alt="Rom" id="slideshow">';
document.getElementById('pictures').innerHTML=content;
}
};
</script>
</head>
<body>
<div id="pictures"> this is pics div</div>
</body>
</html>