<!--
//----------アイマスDS---------
/*キャンペーン*/
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=678,height=720');
		}
	}
	else{
			newwin=window.open(url,'sub','toolbar=0,location=0,direction=0,status=0,menubar=0,scrollbars=1,resizable=1,width=678,height=720');
	}
}

-->