function putApic_(pictureToPut) {
//alert('hello wierld');
var imagefolder = 'webimages';
var subaddress = 'deco';
var ppath = '<img src="' + imagefolder +'/'+ subaddress + '/' + pictureToPut + '"/>';
document.write(ppath);
}

function putApic(pictureToPut) {
//alert('hello wierld');
var ppath = '<img src="webimages/deco/' + pictureToPut + '"/>';
document.write(ppath);
}
