function resizeOuterTo(w,h) {
 if (parseInt(navigator.appVersion)>3) {
   if (navigator.appName=="Netscape") {
    top.outerWidth=w + 24;
    top.outerHeight=h + 58;
   }
   else top.resizeTo(w,h);
 }
} 

function image_popup(pic,title)
{
mywindow = window.open ("image_popup.php?gallery_path="+pic+"&image_name="+title,"product_picture","location=0,status=0,scrollbars=0,width=600,height=520");
mywindow.moveTo(0,0);
mywindow.focus();
}

