
function closeWin() {
  top.close();
}

function subWin(wURL,wSize){
     window.open(wURL,"newWin",wSize);
}

function img(str){
document.getElementById("img").style.backgroundImage = 'url('+str+')';
document.getElementById("img").style.display="block";
document.getElementById("img").src=str;
}

