function ShowPicture(strPictureURL, strPictureTitle)
{ 
	var strCurrentURL = window.location.href;
	
	if (strPictureURL.substring(0, 1) != "/" && strPictureURL.substring(0, 4).toLowerCase != "http")
		strPictureURL = strCurrentURL.substring(0, strCurrentURL.lastIndexOf("/") + 1) + strPictureURL;

	window.open("/_include/show_picture.htm?" + strPictureURL + "&" + strPictureTitle, "", "resizable=1, height=200, width=200"); 
} 

