// JavaScript Document// Written by Milica Kozomara, 2006, 2007function changePic(name,width,height)   {var dir="customShirts/";var ext=".jpg";window.document.getElementById("picField").src = dir+name+ext;window.document.getElementById("picField").height= height;window.document.getElementById("picField").width= width;}var newWindow;function openPic(name,width,height){var dir="customShirts/";var ext=".jpg";if (!newWindow || newWindow.closed)	{ 	newWindow = window.open(dir+name+ext, 'image', 'toolbar=0,location=0,directories=0,status=0,scrollbars=0,resizable=1,width='+width+',height='+height);	}else {	newWindow.close();	newWindow = window.open(dir+name+ext, 'image', 'toolbar=0,location=0,directories=0,status=0,scrollbars=0,resizable=1,width='+width+',height='+height);	}}