function poptwo(url) {
    popupWin = window.open(url, '_blank','scrollbars=no ,width=380,height=620')
    }
		
function show(id) {
    obj = document.getElementById(id);
    obj.style.display = (obj.style.display == "block" ? "none" : "block");
    }
