
function pop_show(url) {
document.getElementById('screenshot_show').style.display="block";
document.getElementById('screenshot_show').innerHTML='<img src="'+url+'" class="img" width="800" height="504">';
}

function pop_hide() {
document.getElementById('screenshot_show').style.display="none";
}
