function newWin(page,winWidth,winHeight) 	{

	if (typeof winWidth == "undefined") {
		winWidth=400;
		winHeight=300;
	}

		win = window.open(page,
		"WIN1",
		"status=no,"+
		"toolbar=yes,"+
		"location=no,"+
		"top=0,"+
		"left=0,"+
		"screenX=0,"+
		"screenY=0,"+
		"directories=no,"+
		"menu=no,"+
	 	"scrollbars=yes," +
		"resizable=yes," +
		"width="+ winWidth +",height=" + winHeight);
	}
