<!--
//----------アイマスSP---------
/*キャンペーン*/
var newwin;
function openWinCam(url){
	if(newwin){
		if(!newwin.closed){
			newwin.location.href=url;
			newwin.focus();
		}
		else{
			newwin=window.open(url,'sub','toolbar=0,location=0,direction=0,status=0,menubar=0,scrollbars=1,resizable=1,width=675,height=690');
		}
	}
	else{
			newwin=window.open(url,'sub','toolbar=0,location=0,direction=0,status=0,menubar=0,scrollbars=1,resizable=1,width=675,height=690');
	}
}

/*PS Spot*/
var newwin;
function openWinSpot(url){
	if(newwin){
		if(!newwin.closed){
			newwin.location.href=url;
			newwin.focus();
		}
		else{
			newwin=window.open(url,'sub','toolbar=0,location=0,direction=0,status=0,menubar=0,scrollbars=1,resizable=1,width=960,height=700');
		}
	}
	else{
			newwin=window.open(url,'sub','toolbar=0,location=0,direction=0,status=0,menubar=0,scrollbars=1,resizable=1,width=960,height=700');
	}
}

//----------アイマスSPキャラクター---------
var newwin;
function openChara(url){
	if(newwin){
		if(!newwin.closed){
			newwin.location.href=url;
			newwin.focus();
		}
		else{
			newwin=window.open(url,'sub','toolbar=0,location=0,direction=0,status=1,menubar=0,scrollbars=1,resizable=0,width=520,height=500');
		}
	}
	else{
			newwin=window.open(url,'sub','toolbar=0,location=0,direction=0,status=1,menubar=0,scrollbars=1,resizable=0,width=520,height=500');
	}
}

