// ******************************************************************
//	Site name		: Sugawara shouten
//	File name		: javaset.js
//	Summary			: javascript base
//	Copyright		: Sugawara shouten
//	Production		: i-graph
// ******************************************************************
//
// ***************************************** n_link
function n_link(value){
	window.location=value+".html"
}
// ***************************************** ExLinks
function ExLinks() {
if (!document.getElementsByTagName) return;
var anchors = document.getElementsByTagName("a");
for (var i=0; i<anchors.length; i++) {
var anchor = anchors[i];
if (anchor.getAttribute("href") &&
anchor.getAttribute("rel") == "external")
anchor.target = "_blank";
}
}
window.onload=ExLinks;
