function createPopup() {
    var x = document.getElementsByTagName('a');
    for(var i = 0; i < x.length; i++) {
       if(x[i].getAttribute('rel') == 'gallerypopup') {
           x[i].onclick = new Function('window.open("' + x[i].getAttribute('href') + '","myWindow", "status=no,height=800,width=900,left=50,location=yes,menubar=no,resizable=0,toolbar=no");return false');
           }
       }
    }
window.onload = function(){createPopup();}

function bezar(){
	window.close();
}

