function ShowHide(strObjId) { if (document.getElementById(strObjId).style.display == 'none') { document.getElementById(strObjId).style.display = '' } else { document.getElementById(strObjId).style.display = 'none' } } function ProductZoom(id) { childWindow = window.open("/Shop/ProductZoom.aspx?product=" + id, "ProductZoom", 'width=473,height=400,left=' + (screen.width-265)/2 + ',top=' + (screen.height-285)/2 + ',toolbars=no,scrollbars=no,status=no,resizable=no'); }