//data----------------------------






//function----------------------------


//rollover
function rollover(rollover_name01,rollover_imgname01){
	if((document.images)&&(document.images[rollover_name01])){
		document.images[rollover_name01].src=rollover_imgname01;
	}
}


//write swf
function write_swf(swf_data01){
	document.write(swf_data01);
}


//css ie
if((navigator.userAgent.indexOf("Win")!=-1)&&(navigator.userAgent.indexOf("MSIE")!=-1)){
	document.write('<link href="css/style_ie01.css" rel="stylesheet" type="text/css">');//061128
}


//css mac
if(navigator.userAgent.indexOf("Mac")!=-1){
	document.write('<link href="css/style_mac01.css" rel="stylesheet" type="text/css">');
}


//popup
function popup(pop_w,pop_h,target01){
	window.open('',target01,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width='+pop_w+',height='+pop_h+'');
}

function popup02(pop_w,pop_h,target01){
	window.open('',target01,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+pop_w+',height='+pop_h+'');
}

