так что ли?
<html>
<head>
<script id="qwe" type="text/javascript">
(function(){
var img=new Image();
var onload=function(available){
alert(available);
}
img.onload=function(){
onload(true);
}
img.onerror=function(){
onload(false);
}
img.src="http://ya.ru/logo.png";
})();
</script>
<script type="text/javascript">
alert(document.getElementById('qwe').innerHTML)
</script>
</head>
<body>
</body>
</html>