	// new window function
	function newWindow(url, width, height){
		var win2 = window.open(url,"popup", "width=" + width + ",height=" + height + 'toolbar=no,location=0,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes');
		win2.focus();
	}