function PopupImageDiv(myImg) {

var mDiv = document.getElementById('myDiv');
mDiv.style.width = '380px';
mDiv.style.height = '120px';
mDiv.style.backgroundColor = '#ffffcc';
mDiv.style.position = 'absolute';
mDiv.style.top = '20px';
mDiv.style.left = '100px';


/*document.body.appendChild(mDiv);*/
var MySrc = document.createElement('img');
MySrc.setAttribute('src', myImg);
document.getElementById('myDiv').appendChild(MySrc); 

}
