
function markmove(e){
x = e.clientX, y = e.clientY; 
document.getElementById("Ma").style.pixelTop  = y+document.body.scrollTop-8;
document.getElementById("Ma").style.pixelLeft = x+document.body.scrollLeft-8;
}

function kansou(geID){
/*document.all(geID).style.color='#4169e1';*/
document.getElementById(geID).style.color='#4169e1';
}

function agecheck(){
str = location.search;
str = str.substring(1, str.length);

tosi="2";
theAge = "Age=";
theCookie = document.cookie+";"
start = theCookie.indexOf(theAge);
if(start != -1){
end = theCookie.indexOf(";",start);
tosi = unescape(theCookie.substring(start+theAge.length,end));
}
if(tosi == '0'){alert("ここは年齢制限ページです！");location.href="0_index2.html";location.replace('0_index.html');}
if(tosi == '2' && str == '1'){location.href="0_index.html";location.replace('0_index.html');}
}

/*
<SCRIPT TYPE="text/javascript" SRC="games.js"></SCRIPT>
 ondblclick="markmove(event);"
<SPAN ID="Ma" style="position:absolute;z-index:3;top:1px;left:1px"><IMG SRC="../part/marker.gif" HEIGHT="15" WIDTH="16"></SPAN>
<SPAN style="position:absolute;top:3px;left:15px;font-size:8pt">
ページ内でダブルクリックした位置に★が移動します。選択肢へのマーキングなどにご利用ください。</SPAN>
*/

