
function openWindow_basic( url , win_name ) {
	sw = screen.availWidth;
	sh = screen.availHeight;
	winwidth = 580;
	winheight = 580;
	wl = (sw-winwidth)/2;
	wt = (sh-winheight)/2;
	window.name = "basic";
	win = window.open(url,win_name,"width=" + winwidth + ",height=" + winheight + ",,menubar=no,toolbar=no,SCROLLBARS=yes,resizable=yes,left=" + wl + ",top=" + wt);
}


function openWindow_cm_gallery_201012() {
	openWindow_basic( "cm_gallery/201012/index_201012.html" , "cm_gallery" );
}

function closeWindow_contents() {
	if(browser("safari")) {
		window.opener = window;
		var win = window.open(location.href,"_self");
		win.close();
	} else {
		window.close();
	}
}


