// 100%のウィンドウを開く


function openGallery( url, w, h ){
sWidth = screen.availWidth;
sHeight = screen.availHeight;
x = (sWidth - w) / 2;
y = (sHeight - h) / 2;
       wo=window.open(url,"gallery","scrollbars=yes,resizable=yes,toolbar=no,location=no,status=no,menubar=no,width="+w+",height="+h+", left="+x+", top="+y);
}