
function popWin(pagename,iWidth, iHeight)

{

window.open(pagename,null,'Width=' + iWidth + ',height=' + iHeight + ',resize=yes,status=no,toolbar=no,menubar=no,location=no,scrollbars=no');

}


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



function confirmImgDeletion()
{
var agree=confirm("Are you sure you want to delete this Image and its associated thumbnail?");
if (agree)
	return true ;
else
	return false ;
}


