// EPICWELDING.COM SCRIPTING

function openPictureWindow(imgFileSource,winWidth,winHeight,winLeft,winTop)
{
	PicWin = window.open(imgFileSource,"PicWin","width="+winWidth+",height="+(winHeight+30)+",scrollbars=no,left="+winLeft+",top="+winTop);
}

function renameImage(imageId)
{
	imageTitle = document.getElementById('image_' + imageId).title;
	var newTitle = prompt('Edit Photo Description', imageTitle);
	if (newTitle)
		window.location = './portfolio.php?imageid=' + imageId + '&edittitle=1&newtitle=' + escape(newTitle);
}

function deleteImage(imageId)
{
	var deleteImage = confirm('Are you sure you want to delete this photo?');
	if (deleteImage)
		window.location = './portfolio.php?imageid=' + imageId + '&deleteimage=1';
}