var windowIsOpen = null;
var targetView = new Array();
targetView[0] = "ja.html";
targetView[1] = "jd.html";
targetView[2] = "sf.html";
targetView[3] = "rl.html";
targetView[4] = "rm.html";
targetView[5] = "fs.html";
targetView[6] = "aw.html";
targetView[7] = "pb.html";
targetView[8] = "mcm.html";
targetView[9] = "bf.html";
targetView[10] = "rh.html";
targetView[11] = "hh.html";
targetView[12] = "dh.html";
targetView[13] = "jo.html";
targetView[20] = "487.html";
targetView[21] = "473.html";
targetView[22] = "472.html";
targetView[23] = "513.html";

var windowSize = new Array();
windowSize[0] = "scrollbars=1,height=600,width=493";
windowSize[1] = "scrollbars=1,height=600,width=450";
windowSize[2] = "scrollbars=1,height=600,width=778";
windowSize[3] = "scrollbars=1,height=600,width=576";
windowSize[4] = "scrollbars=1,height=600,width=550";
windowSize[5] = "scrollbars=1,height=600,width=550";
windowSize[6] = "scrollbars=1,height=600,width=800";
windowSize[7] = "scrollbars=1,height=600,width=378";
windowSize[8] = "scrollbars=1,height=600,width=800";
windowSize[9] = "scrollbars=1,height=600,width=700";
windowSize[10] = "scrollbars=1,height=600,width=400";
windowSize[11] = "scrollbars=1,height=600,width=687";
windowSize[12] = "scrollbars=1,height=600,width=700";
windowSize[13] = "scrollbars=1,height=600,width=900";
windowSize[20] = "height=360,width=640";
windowSize[21] = "height=480,width=270";
windowSize[22] = "height=480,width=270";
windowSize[23] = "height=360,width=640";

function showfh(id)
{
if(windowIsOpen == null)
{
windowIsOpen = window.open(targetView[id],"sub",windowSize[id]);
}
else
{
windowIsOpen.close();
windowIsOpen = window.open(targetView[id],"sub",windowSize[id]);

}
}

