var newwindow = ''
function openImg(url) {
str = '/images/shop/large/' + url;
if (newwindow.location && !newwindow.closed) {
    newwindow.location.href = str;
    newwindow.focus(); }
else {
    newwindow=window.open(str,'Image','width=404,height=316,resizable=1');}
}
