Adicionar imagem ao mapa de openlayers

Aqui está o meu código para adicionar uma imagem no mapa de openlayers.

var image = new OpenLayers.Layer.Image(
    'Image 1',
    'http://belocalat.com/wp-content/plugins/openlayers/data/baselayer-img1.png',
    //new OpenLayers.Bounds(27.418100,35.771100,28.388000,36.558500),
    new OpenLayers.Size(800,255),
    {isBaseLayer: false}
 );

map.addLayer(image);

mas não consigo exibir imagens em openlayers. Alguém pode me dar solução para isso?

Desde já, obrigado.

questionAnswers(1)

yourAnswerToTheQuestion