// JavaScript Document
/*
imgSrc - The image or the html file that you would like to open in a new window
imgNm - The name of the window
w - The width of the window
h - The height of the window
*/

function newWin(imgSrc, imgNm, w, h) {
	window.open(imgSrc, imgNm,'width='+w+',height='+h+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=yes');
}