// JavaScript Document

function autowinpopup(imgname)
{
	myWindow = window.open("","", 'width=0,height=0,top=0,left=0,toolbar=no,left=100,top=150')
	myWindow.document.write("<html><head><title>Colurworks Web And Graphics Solutions</title></head>")
	myWindow.document.write("<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0  onload='window.resizeTo(img.width+10,img.height+35);'>")
	myWindow.document.write("<img src='portfolio/"+imgname+".jpg' id='img'></body></html>")
	myWindow.document.close()
}
