

function BigImage (ImgName,Width,Height) {
NewWindow = window.open(ImgName,"Images","left=500,top=700");
NewWindow.innerHeight = Height;
NewWindow.innerWidth = Width;
NewWindow.toolbar.visible = false;
}
