function popupWindow(name, url){
	window.open(url, name,'toolbar=no, left=100, top=100, location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width=124, height=99');
	return false;
}

function popupInit(){
	var x=document.getElementById("popup-img");
	if (x.width < 300){
        window_w = 370;
    }else{
        window_w = x.width + 70;
    }
	window.resizeTo(window_w, x.height + 150);
}
