function stopErrors() {
return true;
}
window.onerror = stopErrors;

var Client="www.stephaniestokes.com";
var imgTitle="";
function PLI(imgName, imgWidth, imgHeight,
imgCaption)
{
imgTitle=Client;
if (imgCaption != "")
imgTitle=imgTitle + "%20-%20" + imgCaption
if (window.img && !(window.img.closed))
window.img.close();
var URL="popup.php?img=" + imgName + "&Width=" + imgWidth
+ "&Height=" + imgHeight;
var windowWidth=parseInt(imgWidth) + 30;
var windowHeight=parseInt(imgHeight) + 30;
img=window.open(URL, "imgWindow", "width=" + windowWidth +
",height=" + windowHeight + ",toolbars=no");
}


