
//Open Window

function externalLinks() {
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";
}
}

//Open Window touroku

if (window.addEventListener) { //for W3C DOM
  window.addEventListener("load", externalLinks, false);
} else if (window.attachEvent) { //for IE
  window.attachEvent("onload", externalLinks);
} else  {
  window.onload = externalLinks;
}






//Open Window for Movies
function MakeChild(strFileName)
{
	window.open(strFileName,"","scrollbars=yes,resizable=yes,width=550,height=500,top=10,left=0");
}


function  MakeChild2(wUrl,wWidth,wHeight){
scWidthCenter=screen.availWidth/2;
scHeightCenter=screen.availHeight/2;
wOption =
"scrollbars=yes,resizable=yes,width="+wWidth+",height="+wHeight+",left="+(scWidthCenter-(wWidth/2))+",top="+(scHeightCenter-(wHeight/2));
window.open(wUrl,'window1',wOption);
}




