LinkObj = function(url,tgt){
	this.Link = url;
	this.targetWindow = tgt;
}	

links = new Array();

links.push(new LinkObj("schedule/index.html","_blank"));//全入試日程
links.push(new LinkObj("literature/index.html","_self"));//各大学入試要項
links.push(new LinkObj("result/index.html","_self"));//入試結果報告
links.push(new LinkObj("qa/index.html","_self"));//歯学部を目指す皆さんに
links.push(new LinkObj("outline/index.html","_self"));//協会の概要

locationHref = function(){
	var n = arguments[0] - 1;
	if(links[n].targetWindow == "_blank" || links[n].targetWindow == "_new"){
		newWin = window.open(links[n].Link,"newWindow");
		newWin.focus();
	}else if(links[n].targetWindow == "_self"){
		location.href = links[n].Link;
	}else if(links[n].targetWindow == "_top"){
		window.top.location.href = links[n].Link;
	}else{
		window.top[links[n].targetWindow].location.href = links[n].Link;
	}
}

document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="750" height="562" id="top" align="middle">');
document.write('<param name="allowScriptAccess" value="always" />');
document.write('<param name="movie" value="top.swf" />');
document.write('<param name="quality" value="best" />');
document.write('<param name="bgcolor" value="#f7f7f7" />');
document.write('<embed src="top.swf" quality="best" bgcolor="#f7f7f7" width="750" height="562" name="top" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
document.write('</object>');


