function popWin(url, name, h, w, scroll)
{
	// open a new window with dimensions that of the image to be opened in it
	// format dimensions and window attributes
	dimensions = 'width='+h+',height='+w+',scrollbars='+scroll;	
	// open window
	window.open(url, name, dimensions);
	return false;
}