// photo Gallery

Dpic=0
	DImages=new Array(
		"images/finger_run.jpg",
		"images/handle.jpg",
		"images/polish.jpg",
		"images/capo.jpg",
		"images/case.jpg",
		"images/fumen.jpg")

	DTitles=new Array(
		"Finger Ease",
		"Peg Winders and Tuning Folk",
		"Guitar Polish",
		"Capo",
		"Guitar Cases",
		"Portable Music Stand with case")

	DPrice=new Array(
		"$10.50 (GST Inc.)",
		"$2.50 (Peg Winders) / $7.00 (Tuning Folk) (GST Inc.)",
		"$10.50 (GST Inc.)",
		"From $12.50 (GST Inc.)",
		"From $175.00 (Hard Case) / From $35.00 (Gig Bags) (GST Inc.)",
		"$32.00 (GST Inc.)")
		

	DDescript=new Array(
		"It will help with rust.",
		"when you need to change your strings",
		"",
		"",
		"We can organize any type of guitar cases you require.",
		"")
		
	function Dwindow(Dpic) {
		myWinName = "Win"+Dpic
		myWinSize = "width=450, height=620"
		myWin = window.open("", myWinName, myWinSize)
		myWin.document.open()
		myWin.document.write('<html>');
 		myWin.document.write('<head>');
 		myWin.document.write('<title>' , DTitles[Dpic] , '<','/title>');
		myWin.document.write('<link rel=','"stylesheet"',' type=','"text/css"',' href=','"popwin.css"', '/>');
 		myWin.document.write('<','/head>');
 		myWin.document.write('<body>');
		myWin.document.write('<center>');
		myWin.document.write('<img src=\"' , DImages[Dpic] , '\">' );
		myWin.document.write('<h3>');
		myWin.document.write(DTitles[Dpic]);
		myWin.document.write('<','/h3>');
		myWin.document.write('<p>');
		myWin.document.write(DPrice[Dpic]);
		myWin.document.write('<','/p>');		
		myWin.document.write('<form name="','photo"','>');
		myWin.document.write('<textarea',' rows="','3"' ,'cols="','30"' ,'name="','description"' ,'class="','fm"','>' ,DDescript[Dpic],'<','/textarea>')
		myWin.document.write('<' , '/form>');
		myWin.document.write('<a href="javascript:window.close()"','>', 'Close this Window', '<','/a>');
		myWin.document.write('<' , '/center>');
		myWin.document.write('<' , '/body>');
 myWin.document.write('<' , '/html>');
 myWin.document.close();
}
