// JS Information ======================================================// Site URL:	http://www.sugarland.co.jp/// File name:	popup.js// Summary:		Another window is opened// Created:		2008-12-04// Last update:	2008-12-04// Author:		Sadaoka(admin)// Copyright:	(C) 2008 dabhand Inc.//======================================================================function popupCenter (url, name, width, height) {var left = (screen.width - width) / 2;var top = (screen.height - height) / 2;var options = "fullscreen=no,location=yes,status=yes,scrollbars=yes,directories=no,menubar=no,resizable=yes,toolbar=no,titlebar=no,left=" + left + ",top=" + top + ",width=" + width + ",height=" + height;myWindow = window.open(url, name, options);if (myWindow.focus!=null) {myWindow.focus();}}
