function openindex(sentFile, imgW, imgH)
{

var sentFile;
var imgH;
var imgW;

LeftPosition=(screen.width)?(screen.width-imgW)/2:100;
TopPosition=(screen.height)?(screen.height-imgH)/2:100;

OpenWindow=window.open("", "kb_electronics", "height="+imgH+",width="+imgW+",left="+LeftPosition+", top="+TopPosition+", toolbar=no,scrollbars=no,menubar=no");
OpenWindow.document.write("<HTML>")
OpenWindow.document.write("<TITLE>KB Electronics</TITLE>")
OpenWindow.document.write("<BODY onLoad='window.focus();' TOPMARGIN=0 LEFTMARGIN=0 BGCOLOR=#000000>")
OpenWindow.document.write("<IMG SRC='"+sentFile+"'>")
OpenWindow.document.write("</BODY>")
OpenWindow.document.write("</HTML>")
OpenWindow.document.close()
self.name="main"
}
