/**
 * 
 * galleryPopup : full-screen popup
 * 
 * (c) 2008 BIRKENSTOCK JAPAN Co., Ltd. All Rights Reserved.
 * 
 */

function galleryPopup(){
	var locationid = "/gallery/index.html";
	
	var opArr = new Array();
	opArr.push("directories=no");
	opArr.push("menubar=no");
	opArr.push("personalbar=no");
	opArr.push("resizable=yes");
	opArr.push("status=no");
	opArr.push("titlebar=yes");
	opArr.push("toolbar=no");
	opArr.push("scrollbars=yes");
	opArr.push("width="+screen.availWidth);
	opArr.push("height="+screen.availHeight);
	opArr.push("left=0");
	opArr.push("top=0");
	var attributeid = opArr.join(",");
	
	var winop = window.open(locationid,'PhotoGallery',attributeid);
	winop.focus();
}

