function confirmSubmit()
{
	var agree=confirm("Are you sure you wish to delete this?");
	if (agree)
		return true ;
	else
		return false ;
}

function swapImage() 
{ 
	var i,theObj,j=0,swapArray=new Array,oldArray=document.swapImgData;
	for (i=0; i < (swapImage.arguments.length-2); i+=3) 
	{
		theObj = eval(swapImage.arguments[(navigator.appName == 'Netscape')?i:i+1])
		if (theObj != null) 
		{
			swapArray[j++] = theObj;
			swapArray[j++] = (oldArray==null || oldArray[j-1]!=theObj)?theObj.src:oldArray[j];
			theObj.src = swapImage.arguments[i+2];
		} 
	}
	document.swapImgData = swapArray; //used for restore
}

//preload
arImageSrc = new Array (

	
)

arImageList = new Array ();

for (counter in arImageSrc) {
	arImageList[counter] = new Image();
	arImageList[counter].src = arImageSrc[counter];
}



