function castNewWindow(id) {
	window.open("../cast/?GIRL_ID="+id, "cast_introduction", "width=660, height=740, scrollbars=yes, location=no, menubar=no");
	return;
}
function externalLink() {
	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=externalLink;
