// JavaScript Document
function SmallWindow(xlink) {
	var windowWidth = 455   //
	var windowHeight = 300 //Make height full height of screen
	var xLeft = 100  //Display position from left
	var xTop = 100   //Display position from top
	var newWindow = 
		window.open(xlink,
			"newWindow",
			"width=" + (windowWidth) + ","+
			"height=" + (windowHeight) + ","+
			"top=" + xTop + ","+
			"left=" + xLeft + ","+
			"location=no,"+
			"status=no,"+
			"toolbar=no,"+
			"scrollbars=no,"+
			"resizable=yes"					
			);
		newWindow.focus();
}