/*--------------------------------------------グローバルjavascriptファイル*/
function myChgPic(myPicURL){
	document.getElementById("myBigImage").src = myPicURL;
}
function doPopup() {
	if (!document.getElementsByTagName) return false;
	var links = document.getElementsByTagName("a");
	for (var i=0; i < links.length; i++) {
		if (links[i].className.match("popupwindow")) {
			links[i].onclick = function() {
				window.open(this.href, 'Mail Magazine', 'width=450, height=300, menubar=no, toolbar=no, scrollbars=no');
				return false;
			}
		}else if (links[i].className.match("gallery_popup")){
			links[i].onclick = function() {
				window.open(this.href, 'Gallery', 'width=620, height=480, menubar=no, toolbar=no, scrollbars=no');
				return false;
			}
		}
	}
}
window.onload = doPopup;
