// this function opens a pop-up windowvar newWin;function popUp(page, name, details) {	newWin=window.open(page, name, details);	newWin.focus();	return false;}/* Use this in the A HREF tag:Standard (nothing but the file):<a href="images/image.jpg" onClick="return popUp('images/image.jpg', 'imageName', 'width=xxx,height=xxx')"></a>Custom (all the options):<a href="images/image.jpg" onClick="return popUp('images/image.jpg', 'imageName', 'width = xxx,height = xxx,directories = no,location = no, menubar = no,resizable = no,scrollbars = no, status = no,toolbar = no,screenX = xxx,screenY = xxx,top = xxx,left = xxx')"></a>end pop window stuff*/