function stitcha()
{
new_window=open("","hoverwindow","width=280,height=355,left=10,right=10");
new window.document.open();

var d = new_window.document

d.write('<html><title>Stitch Chart</title></html>');
d.write('<body background=\"index.png\" >');
d.write('<center><img src=\"stitch1.png\" width=\"275\" height=\"300\"></center>');
d.write('<center>Total Calculated Stitch Count = 5,755</center>');
d.write('</body></html>');
d.close()
}



function stitchb()
{
new_window=open("","hoverwindow","width=400,height=300,left=10,right=10");
new window.document.open();

var d = new_window.document

d.write('<html><title>Stitch Chart</title>');
d.write('<body background="index.png\">');
d.write('<center><img src=\"stitch2.png\" width=\"394\" height=\"259\"></center>');
d.write('<center>Total Calculated Stitch Count = 13,855</center>');
d.write('</body></html>');
d.close()
	
}

function close_window()
{
	new_window.close();
}

