/* Javascript that opens a new popup window */

function popupWindow(link,width,height,scrollbars,resizable) {
	window.open(link, '', 'toolbar=no,location=0,statusbar=no,menubar=no,'+width+','+height+','+scrollbars+','+resizable);
}

/*
<!-- Paste this code into the HEAD section of your HTML document.
     You may need to change the path of the file.  -->
<script type="text/javascript" src="popupWindow.js"></script>

!-- Paste this code into the BODY section of your HTML document  -->
<!--  You will need to enter the size of the window and whether it should display the scrollbars and be resizable
i.e. (width, height, scrollbars yes/no, resizeable yes/no). See below  -->
<a href="javascript:popupWindow('your_link_and_path.html','width=400','height=400','scrollbars=no','resizable=no')">View Week 1 Slideshow</a>
*/