function DisplayWindow(Item,Graphic)
{

var Win = new String();
var OpenFont = new String();
var ItemName = new String();
var ItemUrl = new String();
var Title = new String();
var Heading = new String();
var CloseButton = new String();
var ClsBtn = new String();
var CloseFont = new String();
var Compilation = new String();
	ItemUrl = Item + ".htm";
	ItemName = "PAC Mate " + Item + " Black Leather Case";
	OpenFont = "<CENTER><FONT FACE=arial SIZE=3><B>";
	GraphicUrl = "<IMG SRC='http://www.atkratter.com/g/epi/" + Graphic + "' HEIGHT=425><BR>";
	CloseButton = "<BUTTON onClick='window.close();'><B>CLOSE WINDOW</B></BUTTON>";
	CloseFont = "</B></FONT></CENTER>";
	Compilation = OpenFont + ItemName + GraphicUrl + CloseButton + CloseFont;
var win = window.open("ItemUrl", null,
"width=550,height=500,left=200,top=125,scrollbars=no")
win.document.writeln(Compilation);
win.status = (ItemName);
}

