
/***newWindow Function***/
//This function creates a pop up window when called with the width and height being passed to the function

function newWindow(winName,w,h) {
	newWin = window.open(winName, "newWin","scrollbars=yes,toolbar=no,locationbar=no,width="+w+",height="+h+",left=50,top=100");
	
}
/***end newWindow Function***/