Need an Image instead of the time ? So, were's the prob ?
Simply modify the template "screensaver".
You can try this - only an example:
Replace the Template "screensaver" with this content
Code:
$stylevar[htmldoctype]
<html xmlns="http://www.w3.org/1999/xhtml" dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<!-- no cache headers -->
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Cache-Control" content="no-cache" />
<!-- end no cache headers -->
$headinclude
<title>$vbphrase[screensaver_title]</title>
</head>
<body>
<script type="text/javascript">
<!--
var myWidth = 0;
var myHeight = 0;
if (typeof (window.innerWidth) == 'number')
{
myWidth = window.innerWidth;
myHeight = window.innerHeight;
}
else if (document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight))
{
myWidth = document.documentElement.clientWidth;
myHeight = document.documentElement.clientHeight;
}
else if (document.body && (document.body.clientWidth || document.body.clientHeight))
{
myWidth = document.body.clientWidth;
myHeight = document.body.clientHeight;
}
// -->
</script>
<table onclick="ScreenieBack();" cellpadding="0" cellspacing="0" border="0" style="width:100%">
<tr valign="middle">
<script type="text/javascript">
<!--
document.write ("<td style=\"width:100%; height:" + myHeight + "px\">");
// -->
</script>
<center><a href="to_my_donation.php"><img src="myimage.gif" border="0" /></a></center>
</td>
</tr>
</table>
<script type="text/javascript">
<!--
var scount = 0;
var screens_url = '$screens_url';
function ScreenieBack ()
{
window.location.href = screens_url;
}
// -->
</script>
</body>
</html>
Regards
Coroner