function openLink(url){
	if(window.opener == null){
	//呼び出し元のウィンドウがない場合
		location.href = url;
	}else{
		if(! window.opener.closed){
		//呼び出し元のウィンドウがある場合
			window.opener.location.href = url;
			window.opener.focus();
//			window.close();
		}else{
		//呼び出し元のウィンドウがあったのだが既に閉じられている場合
			location.href = url;
		}
	}
}

function openPopup(){
	var b = navigator.appName.charAt(0);
	var isSmallScreen;
	if(b == "M"){
		//IE
//		alert([window.screen.availHeight,document.body.clientHeight,document.documentElement.clientHeight]);
		isSmallScreen = (document.documentElement.clientHeight < 670);
	}else{
		//OTHER BROWSER
//		alert([window.screen.availHeight,window.innerHeight]);
		isSmallScreen = (window.innerHeight < 670);
	}
	if(isSmallScreen){
		window.open("2010_lipstick_nailpolish_skinimage.html","2010_spring_colours_pattern","width=867,height="+window.screen.availHeight+",scrollbars=yes");
	}else{
		window.open("2010_lipstick_nailpolish_skinimage.html","2010_spring_pattern","width=867,height=600");
	}
}